- java.lang.Object
-
- javax.imageio.stream.IIOByteBuffer
-
public class IIOByteBuffer extends Object
A class representing a mutable reference to an array of bytes and an offset and length within that array.IIOByteBuffer
is used byImageInputStream
to supply a sequence of bytes to the caller, possibly with fewer copies than using the conventionalread
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 anImageReader
implementation; its contents should be considered read-only and must not be modified.
-
-
Constructor Summary
Constructors Constructor and Description IIOByteBuffer(byte[] data, int offset, int length)
Constructs anIIOByteBuffer
that references a given byte array, offset, and length.
-
Method Summary
Methods Modifier and Type Method and 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 bygetData
.int
getOffset()
Returns the offset within the byte array returned bygetData
at which the data of interest start.void
setData(byte[] data)
Updates the array reference that will be returned by subsequent calls to thegetData
method.void
setLength(int length)
Updates the value that will be returned by subsequent calls to thegetLength
method.void
setOffset(int offset)
Updates the value that will be returned by subsequent calls to thegetOffset
method.
-
-
-
Constructor Detail
-
IIOByteBuffer
public IIOByteBuffer(byte[] data, int offset, int length)
Constructs anIIOByteBuffer
that 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 Detail
-
getData
public 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 ofgetOffset
andgetLength
should be used.- Returns:
- a byte array reference.
- See Also:
getOffset()
,getLength()
,setData(byte[])
-
setData
public void setData(byte[] data)
Updates the array reference that will be returned by subsequent calls to thegetData
method.- Parameters:
data
- a byte array reference containing the new data value.- See Also:
getData()
-
getOffset
public int getOffset()
Returns the offset within the byte array returned bygetData
at which the data of interest start.- Returns:
- an int offset.
- See Also:
getData()
,getLength()
,setOffset(int)
-
setOffset
public void setOffset(int offset)
Updates the value that will be returned by subsequent calls to thegetOffset
method.- Parameters:
offset
- an int containing the new offset value.- See Also:
getOffset()
-
getLength
public int getLength()
Returns the length of the data of interest within the byte array returned bygetData
.- Returns:
- an int length.
- See Also:
getData()
,getOffset()
,setLength(int)
-
setLength
public void setLength(int length)
Updates the value that will be returned by subsequent calls to thegetLength
method.- Parameters:
length
- an int containing the new length value.- See Also:
getLength()
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/11/2024 22:00:23 Cette version de la page est en cache (à la date du 21/11/2024 22:00:23) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/imageio/stream/iiobytebuffer.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.