ITextAnalyzer class Null safety

Interface for a text analyser class that extracts tokens from text for use in full-text search queries and indexes:

Implementers

Constructors

ITextAnalyzer()

Properties

configuration TextAnalyzerConfiguration
The TextAnalyzerConfiguration used by the ITextAnalyzer.
read-only
hashCode int
The hash code for this object.
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited
tokenFilter TokenFilter?
A filter that returns a subset of tokens.
read-only

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
tokenize(SourceText source, [Zone? zone]) Future<List<Token>>
Extracts tokens from source for use in full-text search queries and indexes.
tokenizeJson(Map<String, dynamic> document, [Iterable<Zone>? zones]) Future<List<Token>>
Extracts tokens from the zones in a JSON document for use in full-text search queries and indexes.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited