Package io.quarkus.cache
Enum CacheManagerInfo.Context.Metrics
- java.lang.Object
-
- java.lang.Enum<CacheManagerInfo.Context.Metrics>
-
- io.quarkus.cache.CacheManagerInfo.Context.Metrics
-
- All Implemented Interfaces:
Serializable,Comparable<CacheManagerInfo.Context.Metrics>
- Enclosing interface:
- CacheManagerInfo.Context
public static enum CacheManagerInfo.Context.Metrics extends Enum<CacheManagerInfo.Context.Metrics>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MICROMETERNONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CacheManagerInfo.Context.MetricsvalueOf(String name)Returns the enum constant of this type with the specified name.static CacheManagerInfo.Context.Metrics[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CacheManagerInfo.Context.Metrics NONE
-
MICROMETER
public static final CacheManagerInfo.Context.Metrics MICROMETER
-
-
Method Detail
-
values
public static CacheManagerInfo.Context.Metrics[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CacheManagerInfo.Context.Metrics c : CacheManagerInfo.Context.Metrics.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheManagerInfo.Context.Metrics 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 nameNullPointerException- if the argument is null
-
-