org.springframework.data.gemfire.support
Enum ClientRegionShortcutWrapper
java.lang.Object
java.lang.Enum<ClientRegionShortcutWrapper>
org.springframework.data.gemfire.support.ClientRegionShortcutWrapper
- All Implemented Interfaces:
- Serializable, Comparable<ClientRegionShortcutWrapper>
public enum ClientRegionShortcutWrapper
- extends Enum<ClientRegionShortcutWrapper>
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
CACHING_PROXY
public static final ClientRegionShortcutWrapper CACHING_PROXY
CACHING_PROXY_HEAP_LRU
public static final ClientRegionShortcutWrapper CACHING_PROXY_HEAP_LRU
CACHING_PROXY_OVERFLOW
public static final ClientRegionShortcutWrapper CACHING_PROXY_OVERFLOW
LOCAL
public static final ClientRegionShortcutWrapper LOCAL
LOCAL_HEAP_LRU
public static final ClientRegionShortcutWrapper LOCAL_HEAP_LRU
LOCAL_OVERFLOW
public static final ClientRegionShortcutWrapper LOCAL_OVERFLOW
LOCAL_PERSISTENT
public static final ClientRegionShortcutWrapper LOCAL_PERSISTENT
LOCAL_PERSISTENT_OVERFLOW
public static final ClientRegionShortcutWrapper LOCAL_PERSISTENT_OVERFLOW
PROXY
public static final ClientRegionShortcutWrapper PROXY
UNSPECIFIED
public static final ClientRegionShortcutWrapper UNSPECIFIED
values
public static ClientRegionShortcutWrapper[] 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 (ClientRegionShortcutWrapper c : ClientRegionShortcutWrapper.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ClientRegionShortcutWrapper valueOf(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:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
valueOf
public static ClientRegionShortcutWrapper valueOf(com.gemstone.gemfire.cache.client.ClientRegionShortcut clientRegionShortcut)
getClientRegionShortcut
public com.gemstone.gemfire.cache.client.ClientRegionShortcut getClientRegionShortcut()
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()