protected static class BufferWrapper.EmptyBufferWrapper extends BufferWrapper
BufferWrapper.AbstractBufferWrapper<T extends java.nio.Buffer>, BufferWrapper.ByteBufferWrapper, BufferWrapper.DoubleBufferWrapper, BufferWrapper.EmptyBufferWrapper, BufferWrapper.FloatBufferWrapper, BufferWrapper.IntBufferWrapper, BufferWrapper.ShortBufferWrapper
EMPTY_BUFFER_WRAPPER
Modifier | Constructor and Description |
---|---|
protected |
EmptyBufferWrapper() |
Modifier and Type | Method and Description |
---|---|
BufferWrapper |
copyOf(int newSize)
Returns a copy of this buffer with the specified new size.
|
java.nio.Buffer |
getBackingBuffer()
Returns the buffer's backing data sture.
|
byte |
getByte(int index)
Returns the value at the specified index, cast to a byte.
|
void |
getByte(int index,
byte[] array,
int offset,
int length)
Returns the sequence of values starting at the specified index and with the specified length, cast to bytes.
|
double |
getDouble(int index)
Returns the value at the specified index, cast to a double.
|
void |
getDouble(int index,
double[] array,
int offset,
int length)
Returns the sequence of values starting at the specified index and with the specified length, cast to doubles.
|
float |
getFloat(int index)
Returns the value at the specified index, cast to a float.
|
void |
getFloat(int index,
float[] array,
int offset,
int length)
Returns the sequence of values starting at the specified index and with the specified length, cast to floats.
|
int |
getGLDataType()
Returns the OpenGL data type corresponding to the buffer's underlying data type (e.g.
|
int |
getInt(int index)
Returns the value at the specified index, cast to an int.
|
void |
getInt(int index,
int[] array,
int offset,
int length)
Returns the sequence of values starting at the specified index and with the specified length, cast to ints.
|
short |
getShort(int index)
Returns the value at the specified index, cast to a short.
|
void |
getShort(int index,
short[] array,
int offset,
int length)
Returns the sequence of values starting at the specified index and with the specified length, cast to shorts.
|
long |
getSizeInBytes()
Returns the size of this buffer, in bytes.
|
BufferWrapper |
getSubBuffer(int index,
int length)
Returns a new BufferWrapper which is a subsequence of this buffer.
|
int |
length()
Returns the length of the buffer, in units of the underlying data type (e.g.
|
void |
putByte(int index,
byte value)
Sets the value at the specified index as a byte.
|
void |
putByte(int index,
byte[] array,
int offset,
int length)
Sets the sequence of values starting at the specified index and with the specified length, as bytes.
|
void |
putDouble(int index,
double value)
Sets the value at the specified index as a double.
|
void |
putDouble(int index,
double[] array,
int offset,
int length)
Sets the sequence of values starting at the specified index and with the specified length, as doubles.
|
void |
putFloat(int index,
float value)
Sets the value at the specified index as a float.
|
void |
putFloat(int index,
float[] array,
int offset,
int length)
Sets the sequence of values starting at the specified index and with the specified length, as floats.
|
void |
putInt(int index,
int value)
Sets the value at the specified index as an int.
|
void |
putInt(int index,
int[] array,
int offset,
int length)
Sets the sequence of values starting at the specified index and with the specified length, as ints.
|
void |
putShort(int index,
short value)
Sets the value at the specified index as a short.
|
void |
putShort(int index,
short[] array,
int offset,
int length)
Sets the sequence of values starting at the specified index and with the specified length, as ints.
|
void |
putSubBuffer(int index,
BufferWrapper buffer)
Sets a subsequence of this buffer with the contents of the specified buffer.
|
void |
putSubBuffer(int index,
BufferWrapper buffer,
int offset,
int length)
Sets a subsequence of this buffer with the contents of the specified buffer.
|
emptyBufferWrapper, wrap, wrap, wrap
public BufferWrapper copyOf(int newSize)
BufferWrapper
copyOf
in class BufferWrapper
newSize
- the new buffer's size.public java.nio.Buffer getBackingBuffer()
BufferWrapper
Buffer
.getBackingBuffer
in class BufferWrapper
public byte getByte(int index)
BufferWrapper
getByte
in class BufferWrapper
index
- the index of the value to be returned.public void getByte(int index, byte[] array, int offset, int length)
BufferWrapper
getByte
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to get.public double getDouble(int index)
BufferWrapper
getDouble
in class BufferWrapper
index
- the index of the value to be returned.public void getDouble(int index, double[] array, int offset, int length)
BufferWrapper
getDouble
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to get.public float getFloat(int index)
BufferWrapper
getFloat
in class BufferWrapper
index
- the index of the value to be returned.public void getFloat(int index, float[] array, int offset, int length)
BufferWrapper
getFloat
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to get.public int getGLDataType()
BufferWrapper
getGLDataType
in class BufferWrapper
public int getInt(int index)
BufferWrapper
getInt
in class BufferWrapper
index
- the index of the value to be returned.public void getInt(int index, int[] array, int offset, int length)
BufferWrapper
getInt
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to get.public short getShort(int index)
BufferWrapper
getShort
in class BufferWrapper
index
- the index of the value to be returned.public void getShort(int index, short[] array, int offset, int length)
BufferWrapper
getShort
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to get.public long getSizeInBytes()
BufferWrapper
getSizeInBytes
in class BufferWrapper
public BufferWrapper getSubBuffer(int index, int length)
BufferWrapper
getSubBuffer
in class BufferWrapper
index
- the new buffer's starting index.length
- the new buffer's length.public int length()
BufferWrapper
length
in class BufferWrapper
public void putByte(int index, byte value)
BufferWrapper
putByte
in class BufferWrapper
index
- the index of the value to be returned.value
- the byte value to be set.public void putByte(int index, byte[] array, int offset, int length)
BufferWrapper
putByte
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to put.public void putDouble(int index, double value)
BufferWrapper
putDouble
in class BufferWrapper
index
- the index of the value to be returned.value
- the double value to be set.public void putDouble(int index, double[] array, int offset, int length)
BufferWrapper
putDouble
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to put.public void putFloat(int index, float value)
BufferWrapper
putFloat
in class BufferWrapper
index
- the index of the value to be returned.value
- the float value to be set.public void putFloat(int index, float[] array, int offset, int length)
BufferWrapper
putFloat
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to put.public void putInt(int index, int value)
BufferWrapper
putInt
in class BufferWrapper
index
- the index of the value to be returned.value
- the int value to be set.public void putInt(int index, int[] array, int offset, int length)
BufferWrapper
putInt
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to put.public void putShort(int index, short value)
BufferWrapper
putShort
in class BufferWrapper
index
- the index of the value to be returned.value
- the short value to be set.public void putShort(int index, short[] array, int offset, int length)
BufferWrapper
putShort
in class BufferWrapper
index
- the buffer starting index.array
- the array.offset
- the array starting index.length
- the number of values to put.public void putSubBuffer(int index, BufferWrapper buffer)
BufferWrapper
putSubBuffer
in class BufferWrapper
index
- the starting index to set.buffer
- the buffer.public void putSubBuffer(int index, BufferWrapper buffer, int offset, int length)
BufferWrapper
putSubBuffer
in class BufferWrapper
index
- the starting index to set.buffer
- the buffer.offset
- the starting index to get from the buffer.length
- the number of values to get from the buffer.