Package com.arangodb.entity.arangosearch
Enum AnalyzerType
- java.lang.Object
-
- java.lang.Enum<AnalyzerType>
-
- com.arangodb.entity.arangosearch.AnalyzerType
-
- All Implemented Interfaces:
Serializable,Comparable<AnalyzerType>
public enum AnalyzerType extends Enum<AnalyzerType>
- Author:
- Michele Rastelli
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnalyzerTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AnalyzerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
identity
public static final AnalyzerType identity
-
delimiter
public static final AnalyzerType delimiter
-
stem
public static final AnalyzerType stem
-
norm
public static final AnalyzerType norm
-
ngram
public static final AnalyzerType ngram
-
text
public static final AnalyzerType text
-
pipeline
public static final AnalyzerType pipeline
-
stopwords
public static final AnalyzerType stopwords
-
aql
public static final AnalyzerType aql
-
geojson
public static final AnalyzerType geojson
-
geopoint
public static final AnalyzerType geopoint
-
geo_s2
public static final AnalyzerType geo_s2
-
segmentation
public static final AnalyzerType segmentation
-
collation
public static final AnalyzerType collation
-
classification
public static final AnalyzerType classification
-
nearest_neighbors
public static final AnalyzerType nearest_neighbors
-
minhash
public static final AnalyzerType minhash
-
-
Method Detail
-
values
public static AnalyzerType[] 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 (AnalyzerType c : AnalyzerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnalyzerType 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
-
-