Enum Scopes

java.lang.Object
java.lang.Enum<Scopes>
org.infinispan.factories.impl.Scopes
All Implemented Interfaces:
Serializable, Comparable<Scopes>

public enum Scopes extends Enum<Scopes>
Copy of Scopes to avoid a runtime dependency on the annotations module.
Since:
10.0
  • Enum Constant Details

    • GLOBAL

      public static final Scopes GLOBAL
      A single instance of the component is shared by all the caches.
    • NAMED_CACHE

      public static final Scopes NAMED_CACHE
      Every cache uses a separate instance of the component.
    • NONE

      public static final Scopes NONE
      The component is not cached between requests, but a subclass may be either GLOBAL or NAMED_CACHE.
  • Method Details

    • values

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