Package org.apache.lucene.util.bkd
Class BKDReader.BKDInput
- java.lang.Object
-
- org.apache.lucene.store.DataInput
-
- org.apache.lucene.util.bkd.BKDReader.BKDInput
-
- All Implemented Interfaces:
java.lang.Cloneable
- Direct Known Subclasses:
BKDReader.BKDOffHeapInput
,BKDReader.BKDOnHeapInput
- Enclosing class:
- BKDReader
private abstract static class BKDReader.BKDInput extends DataInput implements java.lang.Cloneable
-
-
Constructor Summary
Constructors Modifier Constructor Description private
BKDInput()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description BKDReader.BKDInput
clone()
Returns a clone of this stream.(package private) abstract long
getMinLeafBlockFP()
(package private) abstract int
getPosition()
(package private) abstract long
ramBytesUsed()
(package private) abstract void
setPosition(int pos)
-
Methods inherited from class org.apache.lucene.store.DataInput
readByte, readBytes, readBytes, readInt, readLELongs, readLong, readMapOfStrings, readSetOfStrings, readShort, readString, readVInt, readVLong, readZInt, readZLong, skipBytes
-
-
-
-
Method Detail
-
getMinLeafBlockFP
abstract long getMinLeafBlockFP()
-
ramBytesUsed
abstract long ramBytesUsed()
-
getPosition
abstract int getPosition()
-
setPosition
abstract void setPosition(int pos) throws java.io.IOException
- Throws:
java.io.IOException
-
clone
public BKDReader.BKDInput clone()
Description copied from class:DataInput
Returns a clone of this stream.Clones of a stream access the same data, and are positioned at the same point as the stream they were cloned from.
Expert: Subclasses must ensure that clones may be positioned at different points in the input from each other and from the stream they were cloned from.
-
-