public static enum JolParameters.Layout extends java.lang.Enum<JolParameters.Layout>
| Enum Constant and Description |
|---|
CURRENT
The executing VM's object layout.
|
HOTSPOT
Simulated HotSpot VM object layout.
|
RAW
Simulated object layout which packs all the fields together, regardless of the alignment.
|
| Modifier and Type | Method and Description |
|---|---|
static JolParameters.Layout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JolParameters.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JolParameters.Layout HOTSPOT
public static final JolParameters.Layout RAW
public static final JolParameters.Layout CURRENT
public static JolParameters.Layout[] values()
for (JolParameters.Layout c : JolParameters.Layout.values()) System.out.println(c);
public static JolParameters.Layout valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null