Uses of Interface
org.apache.lucene.util.fst.FSTReader
Packages that use FSTReader
-
Uses of FSTReader in org.apache.lucene.util.fst
Subinterfaces of FSTReader in org.apache.lucene.util.fstModifier and TypeInterfaceDescriptioninterface
A type ofFSTReader
which needs data to be initialized before useClasses in org.apache.lucene.util.fst that implement FSTReaderModifier and TypeClassDescriptionprivate static final class
This class is used for FST backed by non-FSTReader DataOutput.final class
Provides off heap storage of finite state machine (FST), using underlying index input instead of byte store on heapfinal class
Provides storage of finite state machine (FST), using byte array or byte store allocated on heap.(package private) final class
An adapter class to useByteBuffersDataOutput
as aFSTReader
.Fields in org.apache.lucene.util.fst declared as FSTReaderModifier and TypeFieldDescriptionprivate final FSTReader
FST.fstReader
The reader of the FST, used to read bytes from the underlying FST storageprivate static final FSTReader
FSTCompiler.NULL_FST_READER
Methods in org.apache.lucene.util.fst that return FSTReaderModifier and TypeMethodDescriptionFSTCompiler.getFSTReader()
Get the respectiveFSTReader
of theDataOutput
.Methods in org.apache.lucene.util.fst with parameters of type FSTReaderModifier and TypeMethodDescriptionstatic <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 FSTReaderModifierConstructorDescription(package private)
FST
(FST.FSTMetadata<T> metadata, FSTReader fstReader) Create the FST with a metadata object and a FSTReader.