Package org.apache.solr.common.params
Enum FacetParams.FacetRangeMethod
- java.lang.Object
- 
- java.lang.Enum<FacetParams.FacetRangeMethod>
- 
- org.apache.solr.common.params.FacetParams.FacetRangeMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FacetParams.FacetRangeMethod>
 - Enclosing interface:
- FacetParams
 
 public static enum FacetParams.FacetRangeMethod extends Enum<FacetParams.FacetRangeMethod> An enumeration of the legal values forFacetParams.FACET_RANGE_METHOD- filter =
- dv =
 - See Also:
- FacetParams.FACET_RANGE_METHOD
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FacetParams.FacetRangeMethodget(String label)static FacetParams.FacetRangeMethodgetDefault()StringtoString()static FacetParams.FacetRangeMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static FacetParams.FacetRangeMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
FILTERpublic static final FacetParams.FacetRangeMethod FILTER 
 - 
DVpublic static final FacetParams.FacetRangeMethod DV 
 
- 
 - 
Method Detail- 
valuespublic static FacetParams.FacetRangeMethod[] 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 (FacetParams.FacetRangeMethod c : FacetParams.FacetRangeMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FacetParams.FacetRangeMethod 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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<FacetParams.FacetRangeMethod>
 
 - 
getpublic static FacetParams.FacetRangeMethod get(String label) 
 - 
getDefaultpublic static FacetParams.FacetRangeMethod getDefault() 
 
- 
 
-