public class IIOByteBuffer extends Object
IIOByteBuffer
is used by ImageInputStream
to supply a sequence of bytes to the caller, possibly with fewer copies than using the conventional read
methods that take a user-supplied byte array. The byte array referenced by an IIOByteBuffer
will generally be part of an internal data structure belonging to an ImageReader
implementation; its contents should be considered read-only and must not be modified.
Constructor | Description |
---|---|
IIOByteBuffer |
Constructs an IIOByteBuffer that references a given byte array, offset, and length. |
Modifier and Type | Method | Description |
---|---|---|
byte[] |
getData() |
Returns a reference to the byte array. |
int |
getLength() |
Returns the length of the data of interest within the byte array returned by getData . |
int |
getOffset() |
Returns the offset within the byte array returned by getData at which the data of interest start. |
void |
setData |
Updates the array reference that will be returned by subsequent calls to the getData method. |
void |
setLength |
Updates the value that will be returned by subsequent calls to the getLength method. |
void |
setOffset |
Updates the value that will be returned by subsequent calls to the getOffset method. |
public IIOByteBuffer(byte[] data, int offset, int length)
IIOByteBuffer
that references a given byte array, offset, and length.data
- a byte array.offset
- an int offset within the array.length
- an int specifying the length of the data of interest within byte array, in bytes.public byte[] getData()
getOffset
and getLength
should be used.public void setData(byte[] data)
getData
method.data
- a byte array reference containing the new data value.public int getOffset()
getData
at which the data of interest start.public void setOffset(int offset)
getOffset
method.offset
- an int containing the new offset value.public int getLength()
getData
.public void setLength(int length)
getLength
method.length
- an int containing the new length value.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/imageio/stream/IIOByteBuffer.html