public static enum VMOptions.MemoryKind extends java.lang.Enum<VMOptions.MemoryKind>
| Enum Constant and Description | 
|---|
CODE_CACHE  | 
HEAP  | 
METASPACE  | 
MIN_HEAP  | 
PERM_GEN  | 
| Modifier and Type | Field and Description | 
|---|---|
java.lang.String | 
option  | 
java.lang.String | 
optionName  | 
| Modifier and Type | Method and Description | 
|---|---|
static VMOptions.MemoryKind | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static VMOptions.MemoryKind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final VMOptions.MemoryKind HEAP
public static final VMOptions.MemoryKind MIN_HEAP
public static final VMOptions.MemoryKind PERM_GEN
public static final VMOptions.MemoryKind METASPACE
public static final VMOptions.MemoryKind CODE_CACHE
public final java.lang.String optionName
public final java.lang.String option
public static VMOptions.MemoryKind[] values()
for (VMOptions.MemoryKind c : VMOptions.MemoryKind.values()) System.out.println(c);
public static VMOptions.MemoryKind 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