Method Summary |
|
public void | close() |
public void | flush() A null operation as writing is not supported. |
public int | getByteOrdering() |
public int | getPos() Returns the stream position clamped to a maximum of
Integer.MAX_VALUE . |
public int | length() Returns the length of the data stream.
If the length of the ImageInputStream is not
-1 , then it is returned after being clamped to
a maximum value of Integer.MAX_VALUE . |
public int | read() |
public byte | readByte() |
public double | readDouble() |
public float | readFloat() |
public void | readFully(byte b, int off, int n) |
public int | readInt() |
public long | readLong() |
public short | readShort() |
public int | readUnsignedByte() |
public long | readUnsignedInt() |
public int | readUnsignedShort() |
public void | seek(int off) |
public int | skipBytes(int n) |
public void | write(int b) Throws an IOException as writing is not supported. |
public void | writeByte(int v) Throws an IOException as writing is not supported. |
public void | writeDouble(double v) Throws an IOException as writing is not supported. |
public void | writeFloat(float v) Throws an IOException as writing is not supported. |
public void | writeInt(int v) Throws an IOException as writing is not supported. |
public void | writeLong(long v) Throws an IOException as writing is not supported. |
public void | writeShort(int v) Throws an IOException as writing is not supported. |