Enum Class ClientRegionShortcutWrapper
java.lang.Object
java.lang.Enum<ClientRegionShortcutWrapper>
org.springframework.data.gemfire.client.ClientRegionShortcutWrapper
- All Implemented Interfaces:
Serializable
,Comparable<ClientRegionShortcutWrapper>
,Constable
The ClientRegionShortcutWrapper enum is a Java enumerated type that wraps GemFire's ClientRegionShortcuts
with Spring Data GemFire ClientRegionShortcutWrapper enumerated values.
- Since:
- 1.4.0
- See Also:
-
ClientRegionShortcut
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.geode.cache.client.ClientRegionShortcut
org.apache.geode.cache.DataPolicy
boolean
boolean
boolean
isLocal()
boolean
boolean
boolean
boolean
isProxy()
static ClientRegionShortcutWrapper
Returns the enum constant of this class with the specified name.static ClientRegionShortcutWrapper
valueOf
(org.apache.geode.cache.client.ClientRegionShortcut clientRegionShortcut) Returns the enum constant of this class with the specified name.static ClientRegionShortcutWrapper[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CACHING_PROXY
-
CACHING_PROXY_HEAP_LRU
-
CACHING_PROXY_OVERFLOW
-
LOCAL
-
LOCAL_HEAP_LRU
-
LOCAL_OVERFLOW
-
LOCAL_PERSISTENT
-
LOCAL_PERSISTENT_OVERFLOW
-
PROXY
-
UNSPECIFIED
-
-
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
-
valueOf
public static ClientRegionShortcutWrapper valueOf(org.apache.geode.cache.client.ClientRegionShortcut clientRegionShortcut) 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:
clientRegionShortcut
- 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
-
getClientRegionShortcut
public org.apache.geode.cache.client.ClientRegionShortcut getClientRegionShortcut() -
getDataPolicy
public org.apache.geode.cache.DataPolicy getDataPolicy() -
isCaching
public boolean isCaching() -
isHeapLru
public boolean isHeapLru() -
isLocal
public boolean isLocal() -
isOverflow
public boolean isOverflow() -
isPersistent
public boolean isPersistent() -
isPersistentOverflow
public boolean isPersistentOverflow() -
isProxy
public boolean isProxy()
-