Enum ItemEventType

java.lang.Object
java.lang.Enum<ItemEventType>
com.hazelcast.core.ItemEventType
All Implemented Interfaces:
Serializable, Comparable<ItemEventType>, java.lang.constant.Constable

public enum ItemEventType
extends Enum<ItemEventType>
Type of item events.
  • Enum Constant Details

    • ADDED

      public static final ItemEventType ADDED
      Fired when an item is added.
    • REMOVED

      public static final ItemEventType REMOVED
      Fired when an item is removed.
  • Method Details

    • values

      public static ItemEventType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ItemEventType valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getType

      public int getType()
    • getByType

      public static ItemEventType getByType​(int eventType)