Package org.apache.solr.update
Enum SolrIndexSplitter.SplitMethod
- java.lang.Object
- 
- java.lang.Enum<SolrIndexSplitter.SplitMethod>
- 
- org.apache.solr.update.SolrIndexSplitter.SplitMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SolrIndexSplitter.SplitMethod>
 - Enclosing class:
- SolrIndexSplitter
 
 public static enum SolrIndexSplitter.SplitMethod extends Enum<SolrIndexSplitter.SplitMethod> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SolrIndexSplitter.SplitMethodget(String p)StringtoLower()static SolrIndexSplitter.SplitMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static SolrIndexSplitter.SplitMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
REWRITEpublic static final SolrIndexSplitter.SplitMethod REWRITE 
 - 
LINKpublic static final SolrIndexSplitter.SplitMethod LINK 
 
- 
 - 
Method Detail- 
valuespublic static SolrIndexSplitter.SplitMethod[] 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 (SolrIndexSplitter.SplitMethod c : SolrIndexSplitter.SplitMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SolrIndexSplitter.SplitMethod 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
 
 - 
getpublic static SolrIndexSplitter.SplitMethod get(String p) 
 - 
toLowerpublic String toLower() 
 
- 
 
-