Package org.lwjgl.util.tinyexr
Class EXRAttribute.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<EXRAttribute,EXRAttribute.Buffer>
-
- org.lwjgl.util.tinyexr.EXRAttribute.Buffer
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.lang.Iterable<EXRAttribute>
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
- Enclosing class:
- EXRAttribute
public static class EXRAttribute.Buffer extends org.lwjgl.system.StructBuffer<EXRAttribute,EXRAttribute.Buffer> implements org.lwjgl.system.NativeResource
An array ofEXRAttribute
structs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer
name()
Returns aByteBuffer
view of thename
field.EXRAttribute.Buffer
name(java.nio.ByteBuffer value)
Copies the specified encoded string to thename
field.java.lang.String
nameString()
Decodes the null-terminated string stored in thename
field.int
size()
Returns the value of thesize
field.java.nio.ByteBuffer
type()
Returns aByteBuffer
view of thetype
field.EXRAttribute.Buffer
type(java.nio.ByteBuffer value)
Copies the specified encoded string to thetype
field.java.lang.String
typeString()
Decodes the null-terminated string stored in thetype
field.java.nio.ByteBuffer
value()
Returns aByteBuffer
view of the data pointed to by thevalue
field.EXRAttribute.Buffer
value(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to thevalue
field.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newEXRAttribute.Buffer
instance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byEXRAttribute.SIZEOF
, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
name
public java.nio.ByteBuffer name()
Returns aByteBuffer
view of thename
field.
-
nameString
public java.lang.String nameString()
Decodes the null-terminated string stored in thename
field.
-
type
public java.nio.ByteBuffer type()
Returns aByteBuffer
view of thetype
field.
-
typeString
public java.lang.String typeString()
Decodes the null-terminated string stored in thetype
field.
-
value
@Nullable public java.nio.ByteBuffer value()
Returns aByteBuffer
view of the data pointed to by thevalue
field.
-
size
public int size()
Returns the value of thesize
field.
-
name
public EXRAttribute.Buffer name(java.nio.ByteBuffer value)
Copies the specified encoded string to thename
field.
-
type
public EXRAttribute.Buffer type(java.nio.ByteBuffer value)
Copies the specified encoded string to thetype
field.
-
value
public EXRAttribute.Buffer value(@Nullable java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to thevalue
field.
-
-