Package org.apache.lucene.util.fst
Class FST.FSTMetadata<T>
- java.lang.Object
-
- org.apache.lucene.util.fst.FST.FSTMetadata<T>
-
-
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.
-
-
-
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
.
-
-