Enum ReindexCollectionCmd.Cmd
- java.lang.Object
-
- java.lang.Enum<ReindexCollectionCmd.Cmd>
-
- org.apache.solr.cloud.api.collections.ReindexCollectionCmd.Cmd
-
- All Implemented Interfaces:
Serializable
,Comparable<ReindexCollectionCmd.Cmd>
- Enclosing class:
- ReindexCollectionCmd
public static enum ReindexCollectionCmd.Cmd extends Enum<ReindexCollectionCmd.Cmd>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReindexCollectionCmd.Cmd
get(String p)
String
toLower()
static ReindexCollectionCmd.Cmd
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReindexCollectionCmd.Cmd[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final ReindexCollectionCmd.Cmd START
-
ABORT
public static final ReindexCollectionCmd.Cmd ABORT
-
STATUS
public static final ReindexCollectionCmd.Cmd STATUS
-
-
Method Detail
-
values
public static ReindexCollectionCmd.Cmd[] 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 (ReindexCollectionCmd.Cmd c : ReindexCollectionCmd.Cmd.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReindexCollectionCmd.Cmd 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
-
toLower
public String toLower()
-
get
public static ReindexCollectionCmd.Cmd get(String p)
-
-