Uses of Interface
org.apache.lucene.util.fst.FSTReader
-
Packages that use FSTReader Package Description org.apache.lucene.util.fst Finite state transducers -
-
Uses of FSTReader in org.apache.lucene.util.fst
Subinterfaces of FSTReader in org.apache.lucene.util.fst Modifier and Type Interface Description interface
FSTStore
A type ofFSTReader
which needs data to be initialized before useClasses in org.apache.lucene.util.fst that implement FSTReader Modifier and Type Class Description private static class
FSTCompiler.NullFSTReader
This class is used for FST backed by non-FSTReader DataOutput.class
OffHeapFSTStore
Provides off heap storage of finite state machine (FST), using underlying index input instead of byte store on heapclass
OnHeapFSTStore
Provides storage of finite state machine (FST), using byte array or byte store allocated on heap.(package private) class
ReadWriteDataOutput
An adapter class to useByteBuffersDataOutput
as aFSTReader
.Fields in org.apache.lucene.util.fst declared as FSTReader Modifier and Type Field Description private FSTReader
FST. fstReader
The reader of the FST, used to read bytes from the underlying FST storageprivate static FSTReader
FSTCompiler. NULL_FST_READER
Methods in org.apache.lucene.util.fst that return FSTReader Modifier and Type Method Description FSTReader
FSTCompiler. getFSTReader()
Get the respectiveFSTReader
of theDataOutput
.Methods in org.apache.lucene.util.fst with parameters of type FSTReader Modifier and Type Method Description static <T> FST<T>
FST. fromFSTReader(FST.FSTMetadata<T> fstMetadata, FSTReader fstReader)
Create a FST from aFSTReader
.Constructors in org.apache.lucene.util.fst with parameters of type FSTReader Constructor Description FST(FST.FSTMetadata<T> metadata, FSTReader fstReader)
Create the FST with a metadata object and a FSTReader.
-