public static enum JolParameters.DataModel extends java.lang.Enum<JolParameters.DataModel>
| Enum Constant and Description |
|---|
x86_32
32 bit x86 data model.
|
x86_64
64 bit x86 data model with normal object references.
|
x86_64_COMPRESSED
64 bit x86 data model with compressed object references.
|
| Modifier and Type | Method and Description |
|---|---|
static JolParameters.DataModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JolParameters.DataModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JolParameters.DataModel x86_32
public static final JolParameters.DataModel x86_64
public static final JolParameters.DataModel x86_64_COMPRESSED
public static JolParameters.DataModel[] values()
for (JolParameters.DataModel c : JolParameters.DataModel.values()) System.out.println(c);
public static JolParameters.DataModel 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