Enum Class CqEventType

java.lang.Object
java.lang.Enum<CqEventType>
org.springframework.integration.gemfire.inbound.CqEventType
All Implemented Interfaces:
Serializable, Comparable<CqEventType>, Constable

public enum CqEventType extends Enum<CqEventType>
Enumeration of GemFire Continuous Query Event Types.
Since:
2.1
Author:
David Turanski
  • Enum Constant Details

    • CREATED

      public static final CqEventType CREATED
    • UPDATED

      public static final CqEventType UPDATED
    • DESTROYED

      public static final CqEventType DESTROYED
    • REGION_CLEARED

      public static final CqEventType REGION_CLEARED
    • REGION_INVALIDATED

      public static final CqEventType REGION_INVALIDATED
  • Method Details

    • values

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