public static enum DataMemoryLimitsConfig.Field extends java.lang.Enum<DataMemoryLimitsConfig.Field> implements ConfigField
| Enum Constant and Description |
|---|
MAX_PER_SESSION_DATA_MEMORY_RATIO
memory limit for any one session of the PGX engine relative to the user data memory limit
|
MAX_PER_SESSION_DATA_MEMORY_SIZE
absolute memory limit for any one session of the PGX engine
|
MAX_PER_USER_DATA_MEMORY_RATIO
memory limit for any one user of the PGX engine relative to the private data memory limit
|
MAX_PER_USER_DATA_MEMORY_SIZE
absolute memory limit for any one user of the PGX engine
|
MAX_TOTAL_DATA_MEMORY_RATIO
memory limit across entire PGX engine relative to available system memory
|
MAX_TOTAL_DATA_MEMORY_SIZE
absolute memory limit across entire PGX engine
|
MAX_TOTAL_PRIVATE_DATA_MEMORY_RATIO
memory limit of private data (includes non-published graphs and PGQL results) relative to total PGX engine memory limit
|
MAX_TOTAL_PRIVATE_DATA_MEMORY_SIZE
absolute memory limit of private data (includes non-published graphs and PGQL results)
|
MAX_TOTAL_SHARED_DATA_MEMORY_RATIO
memory limit of shared data (includes published graphs and pinned non-referenced graphs) relative to total PGX engine memory limit
|
MAX_TOTAL_SHARED_DATA_MEMORY_SIZE
absolute memory limit of shared data (includes published graphs and pinned non-referenced graphs)
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getDefaultVal()
Gets the default value of this field.
|
java.util.List<java.lang.String> |
getKeyAliases()
Gets the key aliases of this field which are also recognized during parsing.
|
java.util.List<java.lang.String> |
getSingletonListKeyAliases()
Gets the key aliases of this field which contain single values for lists and are also recognized during parsing.
|
java.lang.Class<?> |
getType()
Gets the type of this field.
|
boolean |
isArray()
Checks if this field is an array.
|
boolean |
isHidden()
Checks if this field should be hidden.
|
boolean |
isPath()
Checks if this field is a path.
|
boolean |
isRequired()
Checks if this field is required.
|
boolean |
isSensitive()
Checks if this field holds a sensitive data.
|
java.lang.String |
toKey()
Get the key of this field, which is how this field is represented in serialized form.
|
java.lang.String |
toString() |
static DataMemoryLimitsConfig.Field |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMemoryLimitsConfig.Field[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOfisEnum, isPrimitivepublic static final DataMemoryLimitsConfig.Field MAX_PER_SESSION_DATA_MEMORY_RATIO
public static final DataMemoryLimitsConfig.Field MAX_PER_SESSION_DATA_MEMORY_SIZE
public static final DataMemoryLimitsConfig.Field MAX_PER_USER_DATA_MEMORY_RATIO
public static final DataMemoryLimitsConfig.Field MAX_PER_USER_DATA_MEMORY_SIZE
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_DATA_MEMORY_RATIO
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_DATA_MEMORY_SIZE
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_PRIVATE_DATA_MEMORY_RATIO
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_PRIVATE_DATA_MEMORY_SIZE
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_SHARED_DATA_MEMORY_RATIO
public static final DataMemoryLimitsConfig.Field MAX_TOTAL_SHARED_DATA_MEMORY_SIZE
public java.lang.Object getDefaultVal()
ConfigFieldgetDefaultVal in interface ConfigFieldpublic java.util.List<java.lang.String> getKeyAliases()
ConfigFieldgetKeyAliases in interface ConfigFieldpublic java.util.List<java.lang.String> getSingletonListKeyAliases()
ConfigFieldgetSingletonListKeyAliases in interface ConfigFieldpublic java.lang.Class<?> getType()
ConfigFieldgetType in interface ConfigFieldpublic boolean isArray()
ConfigFieldisArray in interface ConfigFieldpublic boolean isHidden()
ConfigFieldisHidden in interface ConfigFieldpublic boolean isPath()
ConfigFieldisPath in interface ConfigFieldpublic boolean isRequired()
ConfigFieldisRequired in interface ConfigFieldpublic boolean isSensitive()
ConfigFieldisSensitive in interface ConfigFieldpublic java.lang.String toKey()
ConfigFieldtoKey in interface ConfigFieldpublic java.lang.String toString()
toString in class java.lang.Enum<DataMemoryLimitsConfig.Field>public static DataMemoryLimitsConfig.Field 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 DataMemoryLimitsConfig.Field[] values()
for (DataMemoryLimitsConfig.Field c : DataMemoryLimitsConfig.Field.values())
System.out.println(c);