Uses of Class
org.apache.lucene.util.fst.FST.BytesReader
Packages that use FST.BytesReader
-
Uses of FST.BytesReader in org.apache.lucene.util.fst
Fields in org.apache.lucene.util.fst declared as FST.BytesReaderModifier and TypeFieldDescriptionprotected final FST.BytesReader
FSTEnum.fstReader
protected final FST.BytesReader
FSTEnum.fstReader
Methods in org.apache.lucene.util.fst that return FST.BytesReaderModifier and TypeMethodDescriptionFST.getBytesReader()
Returns aFST.BytesReader
for this FST, positioned at position 0.FSTReader.getReverseBytesReader()
Get the reverse BytesReader for this FSTOffHeapFSTStore.getReverseBytesReader()
OnHeapFSTStore.getReverseBytesReader()
Methods in org.apache.lucene.util.fst with parameters of type FST.BytesReaderModifier and TypeMethodDescriptionFST.findTargetArc
(int labelToMatch, FST.Arc<T> follow, FST.Arc<T> arc, FST.BytesReader in) Finds an arc leaving the incoming arc, replacing the arc in place.FST.readArcByContinuous
(FST.Arc<T> arc, FST.BytesReader in, int rangeIndex) Reads a Continuous node arc, with the provided index in the label range.FST.readArcByDirectAddressing
(FST.Arc<T> arc, FST.BytesReader in, int rangeIndex) Reads a present direct addressing node arc, with the provided index in the label range.FST.readArcByIndex
(FST.Arc<T> arc, FST.BytesReader in, int idx) static <T> FST.Arc
<T> Util.readCeilArc
(int label, FST<T> fst, FST.Arc<T> follow, FST.Arc<T> arc, FST.BytesReader in) Reads the first arc greater or equal than the given label into the provided arc in place and returns it iff found, otherwise returnnull
.FST.readFirstRealTargetArc
(long nodeAddress, FST.Arc<T> arc, FST.BytesReader in) FST.readFirstTargetArc
(FST.Arc<T> follow, FST.Arc<T> arc, FST.BytesReader in) Follow thefollow
arc and read the first arc of its target; this changes the providedarc
(2nd arg) in-place and returns it.FST.readLastArcByContinuous
(FST.Arc<T> arc, FST.BytesReader in) Reads the last arc of a continuous node.FST.readLastArcByDirectAddressing
(FST.Arc<T> arc, FST.BytesReader in) Reads the last arc of a direct addressing node.FST.readNextArc
(FST.Arc<T> arc, FST.BytesReader in) In-place read; returns the arc.FST.readNextRealArc
(FST.Arc<T> arc, FST.BytesReader in) Never returns null, but you should never call this if arc.isLast() is true.