Package org.apache.solr.client.solrj
Enum SolrRequest.ApiVersion
- java.lang.Object
- 
- java.lang.Enum<SolrRequest.ApiVersion>
- 
- org.apache.solr.client.solrj.SolrRequest.ApiVersion
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SolrRequest.ApiVersion>
 - Enclosing class:
- SolrRequest<T extends SolrResponse>
 
 public static enum SolrRequest.ApiVersion extends Enum<SolrRequest.ApiVersion> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApiPrefix()static SolrRequest.ApiVersionvalueOf(String name)Returns the enum constant of this type with the specified name.static SolrRequest.ApiVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
V1public static final SolrRequest.ApiVersion V1 
 - 
V2public static final SolrRequest.ApiVersion V2 
 
- 
 - 
Method Detail- 
valuespublic static SolrRequest.ApiVersion[] 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 (SolrRequest.ApiVersion c : SolrRequest.ApiVersion.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SolrRequest.ApiVersion 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 name
- NullPointerException- if the argument is null
 
 - 
getApiPrefixpublic String getApiPrefix() 
 
- 
 
-