public static enum Options.DocumentMemoryModeValue extends java.lang.Enum<Options.DocumentMemoryModeValue>
| Enum Constant and Description |
|---|
LARGE
Maximum Memory 256MB
|
LARGEST
Maximum Memory 1GB
|
MEDIUM
Maximum Memory 64MB
|
SMALL
Maximum Memory 16MB
|
SMALLEST
Maximum Memory 4MB
|
| Modifier and Type | Field and Description |
|---|---|
long |
value |
| Modifier and Type | Method and Description |
|---|---|
static Options.DocumentMemoryModeValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Options.DocumentMemoryModeValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.DocumentMemoryModeValue SMALLEST
public static final Options.DocumentMemoryModeValue SMALL
public static final Options.DocumentMemoryModeValue MEDIUM
public static final Options.DocumentMemoryModeValue LARGE
public static final Options.DocumentMemoryModeValue LARGEST
public static Options.DocumentMemoryModeValue[] values()
for (Options.DocumentMemoryModeValue c : Options.DocumentMemoryModeValue.values()) System.out.println(c);
public static Options.DocumentMemoryModeValue 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