Enum Class ClientRegionShortcutWrapper

java.lang.Object
java.lang.Enum<ClientRegionShortcutWrapper>
org.springframework.data.gemfire.client.ClientRegionShortcutWrapper
All Implemented Interfaces:
Serializable, Comparable<ClientRegionShortcutWrapper>, Constable

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
Author:
John Blum
See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static ClientRegionShortcutWrapper[] 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

      public static ClientRegionShortcutWrapper valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • valueOf

      public static ClientRegionShortcutWrapper valueOf(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 name
      NullPointerException - if the argument is null
    • getClientRegionShortcut

      public ClientRegionShortcut getClientRegionShortcut()
    • getDataPolicy

      public 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()