Class PipelineAnalyzerProperties
- java.lang.Object
-
- com.arangodb.entity.arangosearch.analyzer.PipelineAnalyzerProperties
-
public final class PipelineAnalyzerProperties extends Object
- Author:
- Michele Rastelli
-
-
Constructor Summary
Constructors Constructor Description PipelineAnalyzerProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PipelineAnalyzerProperties
addAnalyzer(SearchAnalyzer analyzer)
Appends the specified analyzer to the end of the pipeline.boolean
equals(Object o)
List<SearchAnalyzer>
getPipeline()
int
hashCode()
void
setPipeline(List<SearchAnalyzer> pipeline)
-
-
-
Method Detail
-
addAnalyzer
public PipelineAnalyzerProperties addAnalyzer(SearchAnalyzer analyzer)
Appends the specified analyzer to the end of the pipeline. LIMITATIONS: Analyzers of typesGeoPointAnalyzer
andGeoJSONAnalyzer
cannot be used in pipelines and will make the creation fail.- Parameters:
analyzer
- analyzer to be appended- Returns:
- this
-
getPipeline
public List<SearchAnalyzer> getPipeline()
- Returns:
- an array of Analyzer with type and properties attributes
-
setPipeline
public void setPipeline(List<SearchAnalyzer> pipeline)
-
-