Package gov.nasa.worldwind.util
Class BufferWrapper.AbstractBufferWrapper<T extends java.nio.Buffer>
- java.lang.Object
-
- gov.nasa.worldwind.util.BufferWrapper
-
- gov.nasa.worldwind.util.BufferWrapper.AbstractBufferWrapper<T>
-
- Direct Known Subclasses:
BufferWrapper.ByteBufferWrapper,BufferWrapper.DoubleBufferWrapper,BufferWrapper.FloatBufferWrapper,BufferWrapper.IntBufferWrapper,BufferWrapper.ShortBufferWrapper
- Enclosing class:
- BufferWrapper
public abstract static class BufferWrapper.AbstractBufferWrapper<T extends java.nio.Buffer> extends BufferWrapper
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class gov.nasa.worldwind.util.BufferWrapper
BufferWrapper.AbstractBufferWrapper<T extends java.nio.Buffer>, BufferWrapper.ByteBufferWrapper, BufferWrapper.DoubleBufferWrapper, BufferWrapper.EmptyBufferWrapper, BufferWrapper.FloatBufferWrapper, BufferWrapper.IntBufferWrapper, BufferWrapper.ShortBufferWrapper
-
-
Field Summary
Fields Modifier and Type Field Description protected Tbuffer-
Fields inherited from class gov.nasa.worldwind.util.BufferWrapper
EMPTY_BUFFER_WRAPPER
-
-
Constructor Summary
Constructors Constructor Description AbstractBufferWrapper(T buffer)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract voiddoGetByte(byte[] array, int offset, int length)protected abstract voiddoGetDouble(double[] array, int offset, int length)protected abstract voiddoGetFloat(float[] array, int offset, int length)protected abstract voiddoGetInt(int[] array, int offset, int length)protected abstract voiddoGetShort(short[] array, int offset, int length)protected abstract BufferWrapperdoGetSubBuffer()protected abstract voiddoPutByte(byte[] array, int offset, int length)protected abstract voiddoPutDouble(double[] array, int offset, int length)protected abstract voiddoPutFloat(float[] array, int offset, int length)protected abstract voiddoPutInt(int[] array, int offset, int length)protected abstract voiddoPutShort(short[] array, int offset, int length)protected abstract booleandoPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)java.nio.BuffergetBackingBuffer()Returns the buffer's backing data sture.voidgetByte(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.voidgetDouble(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.voidgetFloat(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.voidgetInt(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.voidgetShort(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.BufferWrappergetSubBuffer(int index, int length)Returns a new BufferWrapper which is a subsequence of this buffer.intlength()Returns the length of the buffer, in units of the underlying data type (e.g.voidputByte(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.voidputDouble(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.voidputFloat(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.voidputInt(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.voidputShort(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.voidputSubBuffer(int index, BufferWrapper buffer)Sets a subsequence of this buffer with the contents of the specified buffer.voidputSubBuffer(int index, BufferWrapper buffer, int offset, int length)Sets a subsequence of this buffer with the contents of the specified buffer.-
Methods inherited from class gov.nasa.worldwind.util.BufferWrapper
copyOf, emptyBufferWrapper, getByte, getDouble, getFloat, getGLDataType, getInt, getShort, getSizeInBytes, putByte, putDouble, putFloat, putInt, putShort, wrap, wrap, wrap
-
-
-
-
Field Detail
-
buffer
protected T extends java.nio.Buffer buffer
-
-
Constructor Detail
-
AbstractBufferWrapper
public AbstractBufferWrapper(T buffer)
-
-
Method Detail
-
length
public int length()
Description copied from class:BufferWrapperReturns the length of the buffer, in units of the underlying data type (e.g. bytes, shorts, ints, floats, doubles).- Specified by:
lengthin classBufferWrapper- Returns:
- the buffer's length.
-
getByte
public void getByte(int index, byte[] array, int offset, int length)Description copied from class:BufferWrapperReturns the sequence of values starting at the specified index and with the specified length, cast to bytes.- Specified by:
getBytein classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to get.
-
putByte
public void putByte(int index, byte[] array, int offset, int length)Description copied from class:BufferWrapperSets the sequence of values starting at the specified index and with the specified length, as bytes. The bytes are cast to the underlying data type.- Specified by:
putBytein classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to put.
-
getShort
public void getShort(int index, short[] array, int offset, int length)Description copied from class:BufferWrapperReturns the sequence of values starting at the specified index and with the specified length, cast to shorts.- Specified by:
getShortin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to get.
-
putShort
public void putShort(int index, short[] array, int offset, int length)Description copied from class:BufferWrapperSets the sequence of values starting at the specified index and with the specified length, as ints. The ints are cast to the underlying data type.- Specified by:
putShortin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to put.
-
getInt
public void getInt(int index, int[] array, int offset, int length)Description copied from class:BufferWrapperReturns the sequence of values starting at the specified index and with the specified length, cast to ints.- Specified by:
getIntin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to get.
-
putInt
public void putInt(int index, int[] array, int offset, int length)Description copied from class:BufferWrapperSets the sequence of values starting at the specified index and with the specified length, as ints. The ints are cast to the underlying data type.- Specified by:
putIntin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to put.
-
getFloat
public void getFloat(int index, float[] array, int offset, int length)Description copied from class:BufferWrapperReturns the sequence of values starting at the specified index and with the specified length, cast to floats.- Specified by:
getFloatin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to get.
-
putFloat
public void putFloat(int index, float[] array, int offset, int length)Description copied from class:BufferWrapperSets the sequence of values starting at the specified index and with the specified length, as floats. The floats are cast to the underlying data type.- Specified by:
putFloatin classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to put.
-
getDouble
public void getDouble(int index, double[] array, int offset, int length)Description copied from class:BufferWrapperReturns the sequence of values starting at the specified index and with the specified length, cast to doubles.- Specified by:
getDoublein classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to get.
-
putDouble
public void putDouble(int index, double[] array, int offset, int length)Description copied from class:BufferWrapperSets the sequence of values starting at the specified index and with the specified length, as doubles. The doubles are cast to the underlying data type.- Specified by:
putDoublein classBufferWrapper- Parameters:
index- the buffer starting index.array- the array.offset- the array starting index.length- the number of values to put.
-
getSubBuffer
public BufferWrapper getSubBuffer(int index, int length)
Description copied from class:BufferWrapperReturns a new BufferWrapper which is a subsequence of this buffer. The new buffer starts with the value at the specified index, and has the specified length. The two buffers share the same backing store, so changes to this buffer are reflected in the new buffer, and vice versa.- Specified by:
getSubBufferin classBufferWrapper- Parameters:
index- the new buffer's starting index.length- the new buffer's length.- Returns:
- a subsequence of this buffer.
-
putSubBuffer
public void putSubBuffer(int index, BufferWrapper buffer)Description copied from class:BufferWrapperSets a subsequence of this buffer with the contents of the specified buffer. The subsequence to set starts with the value at the specified index, and has length equal to the specified buffer's length.- Specified by:
putSubBufferin classBufferWrapper- Parameters:
index- the starting index to set.buffer- the buffer.
-
putSubBuffer
public void putSubBuffer(int index, BufferWrapper buffer, int offset, int length)Description copied from class:BufferWrapperSets a subsequence of this buffer with the contents of the specified buffer. The subsequence to set starts with the value at the specified index, and has length equal to the specified length.- Specified by:
putSubBufferin classBufferWrapper- Parameters:
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.
-
getBackingBuffer
public java.nio.Buffer getBackingBuffer()
Description copied from class:BufferWrapperReturns the buffer's backing data sture. For the standard BufferWrapper types (ByteBufferWrapper, ShortBufferWrapper, IntBufferWrapper, FloatBufferWrapper, and DoubleBufferWrapper), this returns the backingBuffer.- Specified by:
getBackingBufferin classBufferWrapper- Returns:
- the backing data store.
-
doGetByte
protected abstract void doGetByte(byte[] array, int offset, int length)
-
doPutByte
protected abstract void doPutByte(byte[] array, int offset, int length)
-
doGetShort
protected abstract void doGetShort(short[] array, int offset, int length)
-
doPutShort
protected abstract void doPutShort(short[] array, int offset, int length)
-
doGetInt
protected abstract void doGetInt(int[] array, int offset, int length)
-
doPutInt
protected abstract void doPutInt(int[] array, int offset, int length)
-
doGetFloat
protected abstract void doGetFloat(float[] array, int offset, int length)
-
doPutFloat
protected abstract void doPutFloat(float[] array, int offset, int length)
-
doGetDouble
protected abstract void doGetDouble(double[] array, int offset, int length)
-
doPutDouble
protected abstract void doPutDouble(double[] array, int offset, int length)
-
doGetSubBuffer
protected abstract BufferWrapper doGetSubBuffer()
-
doPutSubBuffer
protected abstract boolean doPutSubBuffer(int index, BufferWrapper buffer, int offset, int length)
-
-