Enum Class RegionType
- All Implemented Interfaces:
Serializable,Comparable<RegionType>,Constable
Defines 'special' type codes for defining cache region.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription_ALL_TYPES: region is handling all possible types available in the platform.Flag marks registry as no handling queriesAll types which uses cache registry. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated, for removal: This API element is subject to removal in a future version.since 5.0value()static RegionTypeReturns the enum constant of this class with the specified name.static RegionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL_TYPES
_ALL_TYPES: region is handling all possible types available in the platform. One of defined regions MUST be configured to handle all types. If region R1 handles type T and the region R2 handles __ALL_TYPES_ only it is assumed that R2 does not handle T. To make R2 handling type T it should be configured for handling T and _ALL_TYPES_, -
NON_REGISTRABLE
Flag marks registry as no handling queries -
QUERY_CACHE_TYPE
All types which uses cache registry.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
value
-
requiresRegistry
Deprecated, for removal: This API element is subject to removal in a future version.since 5.0
-