Package oracle.pgx.config
Enum DataMemoryLimitType
- java.lang.Object
-
- java.lang.Enum<DataMemoryLimitType>
-
- oracle.pgx.config.DataMemoryLimitType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataMemoryLimitType>
public enum DataMemoryLimitType extends java.lang.Enum<DataMemoryLimitType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAX_PER_SESSION_DATA_MEMORYMAX_PER_USER_DATA_MEMORYMAX_TOTAL_DATA_MEMORYMAX_TOTAL_PRIVATE_DATA_MEMORYMAX_TOTAL_SHARED_DATA_MEMORYROLE_SPECIFIC_MAX_DATA_MEMORYUSER_SPECIFIC_MAX_DATA_MEMORY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.EnumSet<DataMemoryLimitType>getGlobalLimitTypes()java.lang.StringtoString()static DataMemoryLimitTypevalueOf(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.
-
-
-
Enum Constant Detail
-
MAX_TOTAL_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_DATA_MEMORY
-
MAX_TOTAL_PRIVATE_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_PRIVATE_DATA_MEMORY
-
MAX_TOTAL_SHARED_DATA_MEMORY
public static final DataMemoryLimitType MAX_TOTAL_SHARED_DATA_MEMORY
-
MAX_PER_USER_DATA_MEMORY
public static final DataMemoryLimitType MAX_PER_USER_DATA_MEMORY
-
MAX_PER_SESSION_DATA_MEMORY
public static final DataMemoryLimitType MAX_PER_SESSION_DATA_MEMORY
-
USER_SPECIFIC_MAX_DATA_MEMORY
public static final DataMemoryLimitType USER_SPECIFIC_MAX_DATA_MEMORY
-
ROLE_SPECIFIC_MAX_DATA_MEMORY
public static final DataMemoryLimitType ROLE_SPECIFIC_MAX_DATA_MEMORY
-
-
Method Detail
-
values
public static DataMemoryLimitType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataMemoryLimitType c : DataMemoryLimitType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataMemoryLimitType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getGlobalLimitTypes
public static java.util.EnumSet<DataMemoryLimitType> getGlobalLimitTypes()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<DataMemoryLimitType>
-
-