Enum Class CacheFreeingOption.Option

java.lang.Object
java.lang.Enum<CacheFreeingOption.Option>
com.fren_gor.ultimateAdvancementAPI.database.CacheFreeingOption.Option
All Implemented Interfaces:
Serializable, Comparable<CacheFreeingOption.Option>, Constable
Enclosing class:
CacheFreeingOption

public static enum CacheFreeingOption.Option extends Enum<CacheFreeingOption.Option>
Available caching options.
  • Enum Constant Details

    • DONT_CACHE

      public static final CacheFreeingOption.Option DONT_CACHE
      Don't cache the request.
    • AUTOMATIC

      public static final CacheFreeingOption.Option AUTOMATIC
      Cache the request and remove it from the cache after a certain amount of ticks automatically.
    • MANUAL

      public static final CacheFreeingOption.Option MANUAL
      Cache the request and leave it in the cache until a manual unload request is done.
  • Method Details

    • values

      public static CacheFreeingOption.Option[] 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 CacheFreeingOption.Option 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