org.apache.lucene.store
Class InputStreamDataInput
java.lang.Object
org.apache.lucene.store.DataInput
org.apache.lucene.store.InputStreamDataInput
- All Implemented Interfaces:
- Closeable, Cloneable
public class InputStreamDataInput
- extends DataInput
- implements Closeable
A DataInput wrapping a plain InputStream.
|
Method Summary |
void |
close()
|
byte |
readByte()
Reads and returns a single byte. |
void |
readBytes(byte[] b,
int offset,
int len)
Reads a specified number of bytes into an array at the specified offset. |
| Methods inherited from class org.apache.lucene.store.DataInput |
clone, readBytes, readChars, readInt, readLong, readShort, readString, readStringStringMap, readVInt, readVLong, setModifiedUTF8StringsMode |
InputStreamDataInput
public InputStreamDataInput(InputStream is)
readByte
public byte readByte()
throws IOException
- Description copied from class:
DataInput
- Reads and returns a single byte.
- Specified by:
readByte in class DataInput
- Throws:
IOException- See Also:
DataOutput.writeByte(byte)
readBytes
public void readBytes(byte[] b,
int offset,
int len)
throws IOException
- Description copied from class:
DataInput
- Reads a specified number of bytes into an array at the specified offset.
- Specified by:
readBytes in class DataInput
- Parameters:
b - the array to read bytes intooffset - the offset in the array to start storing byteslen - the number of bytes to read
- Throws:
IOException- See Also:
DataOutput.writeBytes(byte[],int)
close
public void close()
throws IOException
- Specified by:
close in interface Closeable
- Throws:
IOException
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.