Enum Class CacheEventType

java.lang.Object
java.lang.Enum<CacheEventType>
org.springframework.integration.hazelcast.CacheEventType
All Implemented Interfaces:
Serializable, Comparable<CacheEventType>, Constable

public enum CacheEventType extends Enum<CacheEventType>
Enumeration of Cache Event Types.
Since:
6.0
Author:
Eren Avsarogullari, Artem Bilan
See Also:
  • Enum Constant Details

    • ADDED

      public static final CacheEventType ADDED
      The Hazelcast ADDED event.
    • REMOVED

      public static final CacheEventType REMOVED
      The Hazelcast REMOVED event.
    • UPDATED

      public static final CacheEventType UPDATED
      The Hazelcast UPDATED event.
    • EVICTED

      public static final CacheEventType EVICTED
      The Hazelcast EVICTED event.
    • EXPIRED

      public static final CacheEventType EXPIRED
      The Hazelcast EXPIRED event.
    • EVICT_ALL

      public static final CacheEventType EVICT_ALL
      The Hazelcast EVICT_ALL event.
    • CLEAR_ALL

      public static final CacheEventType CLEAR_ALL
      The Hazelcast CLEAR_ALL event.
  • Method Details

    • values

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