Share via


LuceneStandardAnalyzer Class

Definition

Standard Apache Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter.

public class LuceneStandardAnalyzer : Azure.Search.Documents.Indexes.Models.LexicalAnalyzer, System.ClientModel.Primitives.IJsonModel<Azure.Search.Documents.Indexes.Models.LuceneStandardAnalyzer>, System.ClientModel.Primitives.IPersistableModel<Azure.Search.Documents.Indexes.Models.LuceneStandardAnalyzer>
type LuceneStandardAnalyzer = class
    inherit LexicalAnalyzer
    interface IJsonModel<LuceneStandardAnalyzer>
    interface IPersistableModel<LuceneStandardAnalyzer>
Public Class LuceneStandardAnalyzer
Inherits LexicalAnalyzer
Implements IJsonModel(Of LuceneStandardAnalyzer), IPersistableModel(Of LuceneStandardAnalyzer)
Inheritance
LuceneStandardAnalyzer
Implements

Constructors

LuceneStandardAnalyzer(String)

Initializes a new instance of LuceneStandardAnalyzer.

Properties

MaxTokenLength

The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters.

Name

The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters.

(Inherited from LexicalAnalyzer)
Stopwords

A list of stopwords.

Methods

JsonModelWriteCore(Utf8JsonWriter, ModelReaderWriterOptions)

Explicit Interface Implementations

IJsonModel<LexicalAnalyzer>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

(Inherited from LexicalAnalyzer)
IJsonModel<LexicalAnalyzer>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

(Inherited from LexicalAnalyzer)
IJsonModel<LuceneStandardAnalyzer>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<LuceneStandardAnalyzer>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<LexicalAnalyzer>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

(Inherited from LexicalAnalyzer)
IPersistableModel<LexicalAnalyzer>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

(Inherited from LexicalAnalyzer)
IPersistableModel<LexicalAnalyzer>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

(Inherited from LexicalAnalyzer)
IPersistableModel<LuceneStandardAnalyzer>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<LuceneStandardAnalyzer>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<LuceneStandardAnalyzer>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to