Enum Class RegionShortcutWrapper

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

public enum RegionShortcutWrapper extends Enum<RegionShortcutWrapper>
The RegionShortcutWrapper enum is a Java enumerated type that wraps GemFire's RegionShortcuts with Spring Data GemFire RegionShortcutWrapper enumerated values.
Since:
1.4.0
Author:
John Blum
See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static RegionShortcutWrapper[] 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 RegionShortcutWrapper 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 RegionShortcutWrapper valueOf(RegionShortcut regionShortcut)
      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:
      regionShortcut - 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
    • getDataPolicy

      public DataPolicy getDataPolicy()
    • getRegionShortcut

      public RegionShortcut getRegionShortcut()
    • isHeapLru

      public boolean isHeapLru()
    • isLocal

      public boolean isLocal()
    • isOverflow

      public boolean isOverflow()
    • isPartition

      public boolean isPartition()
    • isPersistent

      public boolean isPersistent()
    • isPersistentOverflow

      public boolean isPersistentOverflow()
    • isProxy

      public boolean isProxy()
    • isRedundant

      public boolean isRedundant()
    • isReplicate

      public boolean isReplicate()