java.lang.Object
javax.imageio.stream.IIOByteBuffer
A class representing a mutable reference to an array of bytes and
 an offset and length within that array.  
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 SummaryConstructorsConstructorDescriptionIIOByteBuffer(byte[] data, int offset, int length) Constructs anIIOByteBufferthat references a given byte array, offset, and length.
- 
Method SummaryModifier and TypeMethodDescriptionbyte[]getData()Returns a reference to the byte array.intReturns the length of the data of interest within the byte array returned bygetData.intReturns the offset within the byte array returned bygetDataat which the data of interest start.voidsetData(byte[] data) Updates the array reference that will be returned by subsequent calls to thegetDatamethod.voidsetLength(int length) Updates the value that will be returned by subsequent calls to thegetLengthmethod.voidsetOffset(int offset) Updates the value that will be returned by subsequent calls to thegetOffsetmethod.
- 
Constructor Details- 
IIOByteBufferpublic IIOByteBuffer(byte[] data, int offset, int length) Constructs anIIOByteBufferthat references a given byte array, offset, and length.- Parameters:
- 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.
 
 
- 
- 
Method Details- 
getDatapublic byte[] getData()Returns a reference to the byte array. The returned value should be treated as read-only, and only the portion specified by the values ofgetOffsetandgetLengthshould be used.- Returns:
- a byte array reference.
- See Also:
 
- 
setDatapublic void setData(byte[] data) Updates the array reference that will be returned by subsequent calls to thegetDatamethod.- Parameters:
- data- a byte array reference containing the new data value.
- See Also:
 
- 
getOffsetpublic int getOffset()Returns the offset within the byte array returned bygetDataat which the data of interest start.- Returns:
- an int offset.
- See Also:
 
- 
setOffsetpublic void setOffset(int offset) Updates the value that will be returned by subsequent calls to thegetOffsetmethod.- Parameters:
- offset- an int containing the new offset value.
- See Also:
 
- 
getLengthpublic int getLength()Returns the length of the data of interest within the byte array returned bygetData.- Returns:
- an int length.
- See Also:
 
- 
setLengthpublic void setLength(int length) Updates the value that will be returned by subsequent calls to thegetLengthmethod.- Parameters:
- length- an int containing the new length value.
- See Also:
 
 
-