Package org.apache.solr.core
Enum SolrInfoBean.Group
- java.lang.Object
-
- java.lang.Enum<SolrInfoBean.Group>
-
- org.apache.solr.core.SolrInfoBean.Group
-
- All Implemented Interfaces:
Serializable
,Comparable<SolrInfoBean.Group>
- Enclosing interface:
- SolrInfoBean
public static enum SolrInfoBean.Group extends Enum<SolrInfoBean.Group>
Top-level group of beans or metrics for a subsystem.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SolrInfoBean.Group
valueOf(String name)
Returns the enum constant of this type with the specified name.static SolrInfoBean.Group[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
jvm
public static final SolrInfoBean.Group jvm
-
jetty
public static final SolrInfoBean.Group jetty
-
node
public static final SolrInfoBean.Group node
-
core
public static final SolrInfoBean.Group core
-
collection
public static final SolrInfoBean.Group collection
-
shard
public static final SolrInfoBean.Group shard
-
cluster
public static final SolrInfoBean.Group cluster
-
overseer
public static final SolrInfoBean.Group overseer
-
-
Method Detail
-
values
public static SolrInfoBean.Group[] 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 (SolrInfoBean.Group c : SolrInfoBean.Group.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SolrInfoBean.Group 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
-
-