Uses of Class
com.arangodb.entity.arangosearch.analyzer.SearchAnalyzer
Packages that use SearchAnalyzer
-
Uses of SearchAnalyzer in com.arangodb
Methods in com.arangodb that return SearchAnalyzerModifier and TypeMethodDescriptionArangoDatabase.createSearchAnalyzer(SearchAnalyzer analyzer) Creates an AnalyzerArangoDatabase.getSearchAnalyzer(String name) Gets information about an AnalyzerMethods in com.arangodb that return types with arguments of type SearchAnalyzerModifier and TypeMethodDescriptionArangoDatabaseAsync.createSearchAnalyzer(SearchAnalyzer analyzer) Asynchronous version ofArangoDatabase.createSearchAnalyzer(SearchAnalyzer)ArangoDatabaseAsync.getSearchAnalyzer(String name) Asynchronous version ofArangoDatabase.getSearchAnalyzer(String)ArangoDatabase.getSearchAnalyzers()Retrieves all analyzers definitions.ArangoDatabaseAsync.getSearchAnalyzers()Asynchronous version ofArangoDatabase.getSearchAnalyzers()Methods in com.arangodb with parameters of type SearchAnalyzerModifier and TypeMethodDescriptionArangoDatabase.createSearchAnalyzer(SearchAnalyzer analyzer) Creates an AnalyzerArangoDatabaseAsync.createSearchAnalyzer(SearchAnalyzer analyzer) Asynchronous version ofArangoDatabase.createSearchAnalyzer(SearchAnalyzer) -
Uses of SearchAnalyzer in com.arangodb.entity.arangosearch.analyzer
Subclasses of SearchAnalyzer in com.arangodb.entity.arangosearch.analyzerModifier and TypeClassDescriptionfinal classAn Analyzer capable of running a restricted AQL query to perform data manipulation / filtering.final classAn Analyzer capable of classifying tokens in the input text.final classAn Analyzer capable of converting the input into a set of language-specific tokens.final classAn Analyzer capable of breaking up delimited text into tokens as per RFC 4180 (without starting new records on newlines).final classAn Analyzer capable of breaking up a GeoJSON object into a set of indexable tokens for further usage with ArangoSearch Geo functions.final classAn Analyzer capable of breaking up JSON object describing a coordinate into a set of indexable tokens for further usage with ArangoSearch Geo functions.final classAn 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.final classAn Analyzer applying the identity transformation, i.e. returning the input unmodified.final classAn Analyzer that computes so called MinHash signatures using a locality-sensitive hash function.final classAn Analyzer capable of breaking up text into tokens using multiple delimiters.final classAn Analyzer capable of finding nearest neighbors of tokens in the input.final classAn Analyzer capable of producing n-grams from a specified input in a range of min..max (inclusive).final classAn Analyzer capable of normalizing the text, treated as a single token, i.e. case conversion and accent removal.final classAn Analyzer capable of chaining effects of multiple Analyzers into one.final classAn Analyzer capable of breaking up the input text into tokens in a language-agnostic manner, making it suitable for mixed language strings.final classAn Analyzer capable of stemming the text, treated as a single token, for supported languages.final classAn Analyzer capable of removing specified tokens from the input.final classAn 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.final classAn Analyzer that creates n-grams to enable fast partial matching for wildcard queries if you have large string values, especially if you want to search for suffixes or substrings in the middle of strings (infixes) as opposed to prefixes.Methods in com.arangodb.entity.arangosearch.analyzer that return SearchAnalyzerModifier and TypeMethodDescriptionMinHashAnalyzerProperties.getAnalyzer()WildcardAnalyzerProperties.getAnalyzer()Methods in com.arangodb.entity.arangosearch.analyzer that return types with arguments of type SearchAnalyzerMethods in com.arangodb.entity.arangosearch.analyzer with parameters of type SearchAnalyzerModifier and TypeMethodDescriptionPipelineAnalyzerProperties.addAnalyzer(SearchAnalyzer analyzer) Appends the specified analyzer to the end of the pipeline.voidMinHashAnalyzerProperties.setAnalyzer(SearchAnalyzer analyzer) voidWildcardAnalyzerProperties.setAnalyzer(SearchAnalyzer analyzer) Method parameters in com.arangodb.entity.arangosearch.analyzer with type arguments of type SearchAnalyzerModifier and TypeMethodDescriptionvoidPipelineAnalyzerProperties.setPipeline(List<SearchAnalyzer> pipeline)