Package org.apache.solr.crossdc.common
Enum MirroredSolrRequest.Type
- java.lang.Object
-
- java.lang.Enum<MirroredSolrRequest.Type>
-
- org.apache.solr.crossdc.common.MirroredSolrRequest.Type
-
- All Implemented Interfaces:
Serializable,Comparable<MirroredSolrRequest.Type>
- Enclosing class:
- MirroredSolrRequest<T extends org.apache.solr.client.solrj.SolrResponse>
public static enum MirroredSolrRequest.Type extends Enum<MirroredSolrRequest.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MirroredSolrRequest.Typeget(String s)static MirroredSolrRequest.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static MirroredSolrRequest.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATE
public static final MirroredSolrRequest.Type UPDATE
-
ADMIN
public static final MirroredSolrRequest.Type ADMIN
-
CONFIGSET
public static final MirroredSolrRequest.Type CONFIGSET
-
UNKNOWN
public static final MirroredSolrRequest.Type UNKNOWN
-
-
Method Detail
-
values
public static MirroredSolrRequest.Type[] 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 (MirroredSolrRequest.Type c : MirroredSolrRequest.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MirroredSolrRequest.Type 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
-
get
public static final MirroredSolrRequest.Type get(String s)
-
-