public enum AnalyzerType extends Enum<AnalyzerType>
| Enum Constant and Description |
|---|
aql |
classification |
collation |
delimiter |
geo_s2 |
geojson |
geopoint |
identity |
minhash |
nearest_neighbors |
ngram |
norm |
pipeline |
segmentation |
stem |
stopwords |
text |
| Modifier and Type | Method and Description |
|---|---|
static AnalyzerType |
valueOf(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.
|
public static final AnalyzerType identity
public static final AnalyzerType delimiter
public static final AnalyzerType stem
public static final AnalyzerType norm
public static final AnalyzerType ngram
public static final AnalyzerType text
public static final AnalyzerType pipeline
public static final AnalyzerType stopwords
public static final AnalyzerType aql
public static final AnalyzerType geojson
public static final AnalyzerType geopoint
public static final AnalyzerType geo_s2
public static final AnalyzerType segmentation
public static final AnalyzerType collation
public static final AnalyzerType classification
public static final AnalyzerType nearest_neighbors
public static final AnalyzerType minhash
public static AnalyzerType[] values()
for (AnalyzerType c : AnalyzerType.values()) System.out.println(c);
public static AnalyzerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2023 ArangoDB GmbH. All rights reserved.