Enum PrometheusNodeFormatterInfo.NodeCategory
- java.lang.Object
-
- java.lang.Enum<PrometheusNodeFormatterInfo.NodeCategory>
-
- org.apache.solr.metrics.prometheus.node.PrometheusNodeFormatterInfo.NodeCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<PrometheusNodeFormatterInfo.NodeCategory>
- Enclosing interface:
- PrometheusNodeFormatterInfo
public static enum PrometheusNodeFormatterInfo.NodeCategory extends Enum<PrometheusNodeFormatterInfo.NodeCategory>
Category of prefix Solr Node dropwizard handler metric names
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrometheusNodeFormatterInfo.NodeCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static PrometheusNodeFormatterInfo.NodeCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMIN
public static final PrometheusNodeFormatterInfo.NodeCategory ADMIN
-
UPDATE
public static final PrometheusNodeFormatterInfo.NodeCategory UPDATE
-
CONTAINER
public static final PrometheusNodeFormatterInfo.NodeCategory CONTAINER
-
CACHE
public static final PrometheusNodeFormatterInfo.NodeCategory CACHE
-
-
Method Detail
-
values
public static PrometheusNodeFormatterInfo.NodeCategory[] 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 (PrometheusNodeFormatterInfo.NodeCategory c : PrometheusNodeFormatterInfo.NodeCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrometheusNodeFormatterInfo.NodeCategory 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
-
-