Package org.apache.lucene.store
Class ByteArrayDataInput
- java.lang.Object
 - 
- org.apache.lucene.store.DataInput
 - 
- org.apache.lucene.store.ByteArrayDataInput
 
 
 
- 
- All Implemented Interfaces:
 java.lang.Cloneable
public final class ByteArrayDataInput extends DataInput
DataInput backed by a byte array. WARNING: This class omits all low-level checks. 
- 
- 
Constructor Summary
Constructors Constructor Description ByteArrayDataInput()ByteArrayDataInput(byte[] bytes)ByteArrayDataInput(byte[] bytes, int offset, int len) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleaneof()intgetPosition()intlength()bytereadByte()Reads and returns a single byte.voidreadBytes(byte[] b, int offset, int len)Reads a specified number of bytes into an array at the specified offset.intreadInt()Reads four bytes and returns an int.longreadLong()Reads eight bytes and returns a long.shortreadShort()Reads two bytes and returns a short.intreadVInt()Reads an int stored in variable-length format.longreadVLong()Reads a long stored in variable-length format.voidreset(byte[] bytes)voidreset(byte[] bytes, int offset, int len)voidrewind()voidsetPosition(int pos)voidskipBytes(int count)- 
Methods inherited from class org.apache.lucene.store.DataInput
clone, readBytes, readString, readStringSet, readStringStringMap 
 - 
 
 - 
 
- 
- 
Method Detail
- 
reset
public void reset(byte[] bytes)
 
- 
rewind
public void rewind()
 
- 
getPosition
public int getPosition()
 
- 
setPosition
public void setPosition(int pos)
 
- 
reset
public void reset(byte[] bytes, int offset, int len) 
- 
length
public int length()
 
- 
eof
public boolean eof()
 
- 
skipBytes
public void skipBytes(int count)
 
- 
readShort
public short readShort()
Description copied from class:DataInputReads two bytes and returns a short.- Overrides:
 readShortin classDataInput- See Also:
 DataOutput.writeByte(byte)
 
- 
readInt
public int readInt()
Description copied from class:DataInputReads four bytes and returns an int.- Overrides:
 readIntin classDataInput- See Also:
 DataOutput.writeInt(int)
 
- 
readLong
public long readLong()
Description copied from class:DataInputReads eight bytes and returns a long.- Overrides:
 readLongin classDataInput- See Also:
 DataOutput.writeLong(long)
 
- 
readVInt
public int readVInt()
Description copied from class:DataInputReads an int stored in variable-length format. Reads between one and five bytes. Smaller values take fewer bytes. Negative numbers are not supported.The format is described further in
DataOutput.writeVInt(int).- Overrides:
 readVIntin classDataInput- See Also:
 DataOutput.writeVInt(int)
 
- 
readVLong
public long readVLong()
Description copied from class:DataInputReads a long stored in variable-length format. Reads between one and nine bytes. Smaller values take fewer bytes. Negative numbers are not supported.The format is described further in
DataOutput.writeVInt(int).- Overrides:
 readVLongin classDataInput- See Also:
 DataOutput.writeVLong(long)
 
- 
readByte
public byte readByte()
Description copied from class:DataInputReads and returns a single byte.- Specified by:
 readBytein classDataInput- See Also:
 DataOutput.writeByte(byte)
 
- 
readBytes
public void readBytes(byte[] b, int offset, int len)Description copied from class:DataInputReads a specified number of bytes into an array at the specified offset.- Specified by:
 readBytesin classDataInput- Parameters:
 b- the array to read bytes intooffset- the offset in the array to start storing byteslen- the number of bytes to read- See Also:
 DataOutput.writeBytes(byte[],int)
 
 - 
 
 -