public enum MemorySizeValue extends java.lang.Enum<MemorySizeValue>
Modifier and Type | Method and Description |
---|---|
static ByteSizeValue |
parseBytesSizeValueOrHeapRatio(java.lang.String sValue,
java.lang.String settingName)
Parse the provided string as a memory size.
|
static MemorySizeValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MemorySizeValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static MemorySizeValue[] values()
for (MemorySizeValue c : MemorySizeValue.values()) System.out.println(c);
public static MemorySizeValue 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 nullpublic static ByteSizeValue parseBytesSizeValueOrHeapRatio(java.lang.String sValue, java.lang.String settingName)