Enum Class CacheEventType

java.lang.Object
java.lang.Enum<CacheEventType>
com.hazelcast.cache.CacheEventType
All Implemented Interfaces:
Serializable, Comparable<CacheEventType>, Constable

public enum CacheEventType extends Enum<CacheEventType>
Hazelcast JCache implementation's internal event types. This enum type is an extension to EventType to define more event types.
  • Enum Constant Details

    • CREATED

      public static final CacheEventType CREATED
      An event type indicating that the cache entry was created.
    • UPDATED

      public static final CacheEventType UPDATED
      An event type indicating that the cache entry was updated, i.e. a previous mapping existed.
    • REMOVED

      public static final CacheEventType REMOVED
      An event type indicating that the cache entry was removed.
    • EXPIRED

      public static final CacheEventType EXPIRED
      An event type indicating that the cache entry has expired.
    • EVICTED

      public static final CacheEventType EVICTED
      An event type indicating that the cache entry has evicted.
    • INVALIDATED

      public static final CacheEventType INVALIDATED
      An event type indicating that the cache entry has invalidated for Near Cache invalidation.
    • COMPLETED

      public static final CacheEventType COMPLETED
      An event type indicating that the cache operation has completed.
    • EXPIRATION_TIME_UPDATED

      public static final CacheEventType EXPIRATION_TIME_UPDATED
      An event type indicating that the expiration time of cache record has been updated
    • PARTITION_LOST

      public static final CacheEventType PARTITION_LOST
      An event type indicating that partition loss is detected in given cache with name
  • 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
    • getType

      public int getType()
      Returns:
      unique ID of the event type.
    • getByType

      public static CacheEventType getByType(int eventType)
    • toJCacheEventType

      @Nullable public javax.cache.event.EventType toJCacheEventType()
      Converts a CacheEventType into JCache EventType.

      This method performs a direct enum-to-enum mapping used by * CacheEntryListener implementations in the JCache (JSR-107) public API.

      Returns:
      the corresponding EventType, or null if no mapping exists
    • convertToEventType

      @Deprecated(since="5.8", forRemoval=true) public static javax.cache.event.EventType convertToEventType(CacheEventType cacheEventType)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Use toJCacheEventType() instead.
      Converts a CacheEventType into EventType. Just an Enum type conversion takes place.
      Parameters:
      cacheEventType - a CacheEventType.
      Returns:
      same event of EventType enum.