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