Uses of Class
com.arangodb.entity.arangosearch.analyzer.SearchAnalyzer
-
Packages that use SearchAnalyzer Package Description com.arangodb com.arangodb.entity.arangosearch.analyzer -
-
Uses of SearchAnalyzer in com.arangodb
Methods in com.arangodb that return SearchAnalyzer Modifier and Type Method Description SearchAnalyzer
ArangoDatabase. createSearchAnalyzer(SearchAnalyzer analyzer)
Creates an AnalyzerSearchAnalyzer
ArangoDatabase. getSearchAnalyzer(String name)
Gets information about an AnalyzerMethods in com.arangodb that return types with arguments of type SearchAnalyzer Modifier and Type Method Description Collection<SearchAnalyzer>
ArangoDatabase. getSearchAnalyzers()
Retrieves all analyzers definitions.Methods in com.arangodb with parameters of type SearchAnalyzer Modifier and Type Method Description SearchAnalyzer
ArangoDatabase. createSearchAnalyzer(SearchAnalyzer analyzer)
Creates an Analyzer -
Uses of SearchAnalyzer in com.arangodb.entity.arangosearch.analyzer
Subclasses of SearchAnalyzer in com.arangodb.entity.arangosearch.analyzer Modifier and Type Class Description class
AQLAnalyzer
An Analyzer capable of running a restricted AQL query to perform data manipulation / filtering.class
ClassificationAnalyzer
An Analyzer capable of classifying tokens in the input text.class
CollationAnalyzer
An Analyzer capable of converting the input into a set of language-specific tokens.class
DelimiterAnalyzer
An Analyzer capable of breaking up delimited text into tokens as per RFC 4180 (without starting new records on newlines).class
GeoJSONAnalyzer
An Analyzer capable of breaking up a GeoJSON object into a set of indexable tokens for further usage with ArangoSearch Geo functions.class
GeoPointAnalyzer
An Analyzer capable of breaking up JSON object describing a coordinate into a set of indexable tokens for further usage with ArangoSearch Geo functions.class
GeoS2Analyzer
An Analyzer capable of breaking up a GeoJSON object or coordinate array in [longitude, latitude] order into a set of indexable tokens for further usage with ArangoSearch Geo functions.class
IdentityAnalyzer
An Analyzer applying the identity transformation, i.e.class
MinHashAnalyzer
An Analyzer that computes so called MinHash signatures using a locality-sensitive hash function.class
NearestNeighborsAnalyzer
An Analyzer capable of finding nearest neighbors of tokens in the input.class
NGramAnalyzer
An Analyzer capable of producing n-grams from a specified input in a range of min..max (inclusive).class
NormAnalyzer
An Analyzer capable of normalizing the text, treated as a single token, i.e.class
PipelineAnalyzer
An Analyzer capable of chaining effects of multiple Analyzers into one.class
SegmentationAnalyzer
An Analyzer capable of breaking up the input text into tokens in a language-agnostic manner, making it suitable for mixed language strings.class
StemAnalyzer
An Analyzer capable of stemming the text, treated as a single token, for supported languages.class
StopwordsAnalyzer
An Analyzer capable of removing specified tokens from the input.class
TextAnalyzer
An Analyzer capable of breaking up strings into individual words while also optionally filtering out stop-words, extracting word stems, applying case conversion and accent removal.Methods in com.arangodb.entity.arangosearch.analyzer that return SearchAnalyzer Modifier and Type Method Description SearchAnalyzer
MinHashAnalyzerProperties. getAnalyzer()
Methods in com.arangodb.entity.arangosearch.analyzer that return types with arguments of type SearchAnalyzer Modifier and Type Method Description List<SearchAnalyzer>
PipelineAnalyzerProperties. getPipeline()
Methods in com.arangodb.entity.arangosearch.analyzer with parameters of type SearchAnalyzer Modifier and Type Method Description PipelineAnalyzerProperties
PipelineAnalyzerProperties. addAnalyzer(SearchAnalyzer analyzer)
Appends the specified analyzer to the end of the pipeline.void
MinHashAnalyzerProperties. setAnalyzer(SearchAnalyzer analyzer)
Method parameters in com.arangodb.entity.arangosearch.analyzer with type arguments of type SearchAnalyzer Modifier and Type Method Description void
PipelineAnalyzerProperties. setPipeline(List<SearchAnalyzer> pipeline)
-