Enum Class RemovalCause

java.lang.Object
java.lang.Enum<RemovalCause>
com.axelor.cache.event.RemovalCause
All Implemented Interfaces:
Serializable, Comparable<RemovalCause>, Constable

public enum RemovalCause extends Enum<RemovalCause>
The reason why a cached entry was removed
  • Enum Constant Details

    • REMOVED

      public static final RemovalCause REMOVED
      Removed because of invalidation or eviction
    • REPLACED

      public static final RemovalCause REPLACED
      Replaced with another value
    • EXPIRED

      public static final RemovalCause EXPIRED
      Removed because of expiration
  • Method Details

    • values

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