Click or drag to resize

AnalyzerProperties Class

Properties of an Analyzer. See https://www.arangodb.com/docs/stable/analyzers.html#analyzer-properties
Inheritance Hierarchy
SystemObject
  ArangoDBNetStandard.AnalyzerApi.ModelsAnalyzerProperties

Namespace:  ArangoDBNetStandard.AnalyzerApi.Models
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public class AnalyzerProperties

The AnalyzerProperties type exposes the following members.

Constructors
  NameDescription
Public methodAnalyzerProperties
Initializes a new instance of the AnalyzerProperties class
Top
Properties
  NameDescription
Public propertyAccent
Optional. When true, accented characters are preserved. When false, accented characters are converted to their base characters.
Public propertyCase
The case to use when normalizing the text. Possible values: "lower" to convert to all lower-case characters "upper" to convert to all upper-case characters "none" to not change character case (default)
Public propertyLocale
A locale in the format language[_COUNTRY][.encoding][@variant] (square brackets denote optional parts), e.g. "de.utf-8" or "en_US.utf-8". Only UTF-8 encoding is meaningful in ArangoDB. The locale is forwarded to ICU without checks. An invalid locale does not prevent the creation of the Analyzer.
Public propertyStemming
Turn Stemming ON or OFF. If true, the analyzer stems the text, treated as a single token, for supported languages. Stemming support is provided by Snowball, which supports the languages listed at: https://www.arangodb.com/docs/stable/analyzers.html#stemming
Public propertyStopWords
An Analyzer is capable of removing specified tokens from the input. It uses binary comparison to determine if an input token should be discarded. It checks for exact matches. If the input contains only a substring that matches one of the defined stopwords, then it is not discarded. Longer inputs such as prefixes of stopwords are also not discarded.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also