Package org.apache.lucene.util.fst
Class FST.BytesReader
- java.lang.Object
-
- org.apache.lucene.store.DataInput
-
- org.apache.lucene.util.fst.FST.BytesReader
-
-
Constructor Summary
Constructors Constructor Description BytesReader()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract longgetPosition()Get current read position.abstract booleanreversed()Returns true if this reader uses reversed bytes under-the-hood.abstract voidsetPosition(long pos)Set current read position.abstract voidskipBytes(int count)Skips bytes.-
Methods inherited from class org.apache.lucene.store.DataInput
clone, readByte, readBytes, readBytes, readInt, readLong, readShort, readString, readStringSet, readStringStringMap, readVInt, readVLong
-
-
-
-
Method Detail
-
getPosition
public abstract long getPosition()
Get current read position.
-
setPosition
public abstract void setPosition(long pos)
Set current read position.
-
reversed
public abstract boolean reversed()
Returns true if this reader uses reversed bytes under-the-hood.
-
skipBytes
public abstract void skipBytes(int count)
Skips bytes.
-
-