public enum DataMemoryLimitType extends java.lang.Enum<DataMemoryLimitType>
| Enum Constant and Description |
|---|
MAX_PER_SESSION_DATA_MEMORY |
MAX_PER_USER_DATA_MEMORY |
MAX_TOTAL_DATA_MEMORY |
MAX_TOTAL_PRIVATE_DATA_MEMORY |
MAX_TOTAL_SHARED_DATA_MEMORY |
ROLE_SPECIFIC_MAX_DATA_MEMORY |
USER_SPECIFIC_MAX_DATA_MEMORY |
| Modifier and Type | Method and Description |
|---|---|
static java.util.EnumSet<DataMemoryLimitType> |
getGlobalLimitTypes() |
java.lang.String |
toString() |
static DataMemoryLimitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMemoryLimitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMemoryLimitType MAX_PER_SESSION_DATA_MEMORY
public static final DataMemoryLimitType MAX_PER_USER_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_PRIVATE_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_SHARED_DATA_MEMORY
public static final DataMemoryLimitType ROLE_SPECIFIC_MAX_DATA_MEMORY
public static final DataMemoryLimitType USER_SPECIFIC_MAX_DATA_MEMORY
public static java.util.EnumSet<DataMemoryLimitType> getGlobalLimitTypes()
public java.lang.String toString()
toString in class java.lang.Enum<DataMemoryLimitType>public static DataMemoryLimitType 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 DataMemoryLimitType[] values()
for (DataMemoryLimitType c : DataMemoryLimitType.values()) System.out.println(c);