Enum Class CacheEvent.Type

java.lang.Object
java.lang.Enum<CacheEvent.Type>
io.github.resilience4j.cache.event.CacheEvent.Type
All Implemented Interfaces:
Serializable, Comparable<CacheEvent.Type>, Constable
Enclosing interface:
CacheEvent

public static enum CacheEvent.Type extends Enum<CacheEvent.Type>
Event types which are created by a CircuitBreaker.
  • Enum Constant Details

    • ERROR

      public static final CacheEvent.Type ERROR
      A CacheEvent which informs that at Cache was not available
    • CACHE_HIT

      public static final CacheEvent.Type CACHE_HIT
      A CacheEvent which informs a cache hit
    • CACHE_MISS

      public static final CacheEvent.Type CACHE_MISS
      A CacheEvent which informs a cache miss
  • Method Details

    • values

      public static CacheEvent.Type[] 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 CacheEvent.Type 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