|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.lucene.store.DataInput
public abstract class DataInput
Abstract base class for performing read operations of Lucene's low-level data types.
Constructor Summary | |
---|---|
DataInput()
|
Method Summary | |
---|---|
Object |
clone()
Returns a clone of this stream. |
abstract byte |
readByte()
Reads and returns a single byte. |
abstract void |
readBytes(byte[] b,
int offset,
int len)
Reads a specified number of bytes into an array at the specified offset. |
void |
readBytes(byte[] b,
int offset,
int len,
boolean useBuffer)
Reads a specified number of bytes into an array at the specified offset with control over whether the read should be buffered (callers who have their own buffer should pass in "false" for useBuffer). |
void |
readChars(char[] buffer,
int start,
int length)
Deprecated. -- please use readString or readBytes instead, and construct the string from those utf8 bytes |
int |
readInt()
Reads four bytes and returns an int. |
long |
readLong()
Reads eight bytes and returns a long. |
short |
readShort()
Reads two bytes and returns a short. |
String |
readString()
Reads a string. |
Map<String,String> |
readStringStringMap()
|
int |
readVInt()
Reads an int stored in variable-length format. |
long |
readVLong()
Reads a long stored in variable-length format. |
void |
setModifiedUTF8StringsMode()
Call this if readString should read characters stored in the old modified UTF8 format (length in java chars and java's modified UTF8 encoding). |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DataInput()
Method Detail |
---|
public void setModifiedUTF8StringsMode()
public abstract byte readByte() throws IOException
IOException
DataOutput.writeByte(byte)
public abstract void readBytes(byte[] b, int offset, int len) throws IOException
b
- the array to read bytes intooffset
- the offset in the array to start storing byteslen
- the number of bytes to read
IOException
DataOutput.writeBytes(byte[],int)
public void readBytes(byte[] b, int offset, int len, boolean useBuffer) throws IOException
BufferedIndexInput
respects this parameter.
b
- the array to read bytes intooffset
- the offset in the array to start storing byteslen
- the number of bytes to readuseBuffer
- set to false if the caller will handle
buffering.
IOException
DataOutput.writeBytes(byte[],int)
public short readShort() throws IOException
IOException
DataOutput.writeByte(byte)
public int readInt() throws IOException
IOException
DataOutput.writeInt(int)
public int readVInt() throws IOException
IOException
DataOutput.writeVInt(int)
public long readLong() throws IOException
IOException
DataOutput.writeLong(long)
public long readVLong() throws IOException
IOException
public String readString() throws IOException
IOException
DataOutput.writeString(String)
@Deprecated public void readChars(char[] buffer, int start, int length) throws IOException
buffer
- the array to read characters intostart
- the offset in the array to start storing characterslength
- the number of characters to read
IOException
DataOutput.writeChars(String,int,int)
public Object clone()
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.
clone
in class Object
public Map<String,String> readStringStringMap() throws IOException
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |