Class SearchAnalyzer
- java.lang.Object
-
- com.arangodb.entity.arangosearch.analyzer.SearchAnalyzer
-
- Direct Known Subclasses:
AQLAnalyzer,ClassificationAnalyzer,CollationAnalyzer,DelimiterAnalyzer,GeoJSONAnalyzer,GeoPointAnalyzer,GeoS2Analyzer,IdentityAnalyzer,MinHashAnalyzer,NearestNeighborsAnalyzer,NGramAnalyzer,NormAnalyzer,PipelineAnalyzer,SegmentationAnalyzer,StemAnalyzer,StopwordsAnalyzer,TextAnalyzer
public abstract class SearchAnalyzer extends Object
- Author:
- Michele Rastelli
-
-
Constructor Summary
Constructors Constructor Description SearchAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Set<AnalyzerFeature>getFeatures()StringgetName()AnalyzerTypegetType()inthashCode()voidsetFeatures(Set<AnalyzerFeature> features)voidsetName(String name)voidsetType(AnalyzerType type)
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- The Analyzer name.
-
setName
public void setName(String name)
-
getType
public AnalyzerType getType()
- Returns:
- The Analyzer type.
-
setType
public void setType(AnalyzerType type)
-
getFeatures
public Set<AnalyzerFeature> getFeatures()
- Returns:
- The set of features to set on the Analyzer generated fields.
-
setFeatures
public void setFeatures(Set<AnalyzerFeature> features)
-
-