API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.imageio.stream. IIOByteBuffer View Source
Author(s)
Since
Version
0.5
Serial
Hierarchy
 Object
      IIOByteBuffer
Implements
Subclasses
Description
public class IIOByteBuffer
  A class representing a mutable reference to an array of bytes and an offset and length within that array.
See also:   
Constructors
public IIOByteBuffer (byte[] data, int offset, int length)
  Constructs an IIOByteBuffer that references a given byte array, offset, and length.
Methods
Hide/Show inherited methods
public byte getData ()
  Returns a reference to the byte array.
public int getLength ()
  Returns the length of the data of interest within the byte array returned by getData.
public int getOffset ()
  Returns the offset within the byte array returned by getData at which the data of interest start.
public void setData (byte[] data)
  Updates the array reference that will be returned by subsequent calls to the getData method.
public void setLength (int length)
  Updates the value that will be returned by subsequent calls to the getLength method.
public void setOffset (int offset)
  Updates the value that will be returned by subsequent calls to the getOffset method.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar