Package org.docx4j.org.apache.poi.util
Interface LittleEndianInput
- All Known Implementing Classes:
ChunkedCipherInputStream,DocumentInputStream,LittleEndianInputStream,NDocumentInputStream,ODocumentInputStream
public interface LittleEndianInput
- Author:
- Josh Micich
-
Method Summary
Modifier and Type Method Description intavailable()bytereadByte()doublereadDouble()voidreadFully(byte[] buf)voidreadFully(byte[] buf, int off, int len)intreadInt()longreadLong()shortreadShort()intreadUByte()intreadUShort()
-
Method Details
-
available
int available() -
readByte
byte readByte() -
readUByte
int readUByte() -
readShort
short readShort() -
readUShort
int readUShort() -
readInt
int readInt() -
readLong
long readLong() -
readDouble
double readDouble() -
readFully
void readFully(byte[] buf) -
readFully
void readFully(byte[] buf, int off, int len)
-