- java.lang.Object
-
- org.apache.lucene.util.fst.FST.FSTMetadata<T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) T
emptyOutput
(package private) FST.INPUT_TYPE
inputType
(package private) long
numBytes
(package private) Outputs<T>
outputs
(package private) long
startNode
(package private) int
version
-
Constructor Summary
Constructors Constructor Description FSTMetadata(FST.INPUT_TYPE inputType, Outputs<T> outputs, T emptyOutput, long startNode, int version, long numBytes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getVersion()
Returns the version constant of the binary format this FST was written in.
-
-
-
Field Detail
-
inputType
final FST.INPUT_TYPE inputType
-
version
final int version
-
emptyOutput
T emptyOutput
-
startNode
long startNode
-
numBytes
long numBytes
-
-
Constructor Detail
-
FSTMetadata
public FSTMetadata(FST.INPUT_TYPE inputType, Outputs<T> outputs, T emptyOutput, long startNode, int version, long numBytes)
-
-
Method Detail
-
getVersion
public int getVersion()
Returns the version constant of the binary format this FST was written in. See thestatic final int VERSION
constants in FST's javadoc, e.g.FST.VERSION_CONTINUOUS_ARCS
.
-
-