public final class DataBufferFloat extends DataBuffer
DataBuffer and stores data internally
 in float form.
 - Since:
- 1.4
- 
Field SummaryFields declared in class java.awt.image.DataBufferbanks, dataType, offset, offsets, size, TYPE_BYTE, TYPE_DOUBLE, TYPE_FLOAT, TYPE_INT, TYPE_SHORT, TYPE_UNDEFINED, TYPE_USHORT
- 
Constructor SummaryConstructors Constructor Description DataBufferFloat(float[][] dataArray, int size)Constructs afloat-basedDataBufferwith the specified data arrays.DataBufferFloat(float[][] dataArray, int size, int[] offsets)Constructs afloat-basedDataBufferwith the specified data arrays, size, and per-bank offsets.DataBufferFloat(float[] dataArray, int size)Constructs afloat-basedDataBufferwith the specified data array.DataBufferFloat(float[] dataArray, int size, int offset)Constructs afloat-basedDataBufferwith the specified data array.DataBufferFloat(int size)Constructs afloat-basedDataBufferwith a specified size.DataBufferFloat(int size, int numBanks)Constructs afloat-basedDataBufferwith a specified number of banks, all of which are of a specified size.
- 
Method SummaryModifier and Type Method Description float[][]getBankData()Returns the data array for all banks.float[]getData()Returns the default (first)floatdata array.float[]getData(int bank)Returns the data array for the specified bank.intgetElem(int i)Returns the requested data array element from the first (default) bank as anint.intgetElem(int bank, int i)Returns the requested data array element from the specified bank as anint.doublegetElemDouble(int i)Returns the requested data array element from the first (default) bank as adouble.doublegetElemDouble(int bank, int i)Returns the requested data array element from the specified bank as adouble.floatgetElemFloat(int i)Returns the requested data array element from the first (default) bank as afloat.floatgetElemFloat(int bank, int i)Returns the requested data array element from the specified bank as afloat.voidsetElem(int i, int val)Sets the requested data array element in the first (default) bank to the givenint.voidsetElem(int bank, int i, int val)Sets the requested data array element in the specified bank to the givenint.voidsetElemDouble(int i, double val)Sets the requested data array element in the first (default) bank to the givendouble.voidsetElemDouble(int bank, int i, double val)Sets the requested data array element in the specified bank to the givendouble.voidsetElemFloat(int i, float val)Sets the requested data array element in the first (default) bank to the givenfloat.voidsetElemFloat(int bank, int i, float val)Sets the requested data array element in the specified bank to the givenfloat.Methods declared in class java.awt.image.DataBuffergetDataType, getDataTypeSize, getNumBanks, getOffset, getOffsets, getSize
- 
Constructor Details- 
DataBufferFloatpublic DataBufferFloat(int size)Constructs afloat-basedDataBufferwith a specified size.- Parameters:
- size- The number of elements in the DataBuffer.
 
- 
DataBufferFloatpublic DataBufferFloat(int size, int numBanks)Constructs afloat-basedDataBufferwith a specified number of banks, all of which are of a specified size.- Parameters:
- size- The number of elements in each bank of the- DataBuffer.
- numBanks- The number of banks in the- DataBuffer.
 
- 
DataBufferFloatpublic DataBufferFloat(float[] dataArray, int size)Constructs afloat-basedDataBufferwith the specified data array. Only the firstsizeelements are available for use by thisDataBuffer. The array must be large enough to holdsizeelements.Note that DataBufferobjects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Parameters:
- dataArray- An array of- floats to be used as the first and only bank of this- DataBuffer.
- size- The number of elements of the array to be used.
 
- 
DataBufferFloatpublic DataBufferFloat(float[] dataArray, int size, int offset)Constructs afloat-basedDataBufferwith the specified data array. Only the elements betweenoffsetandoffset + size - 1are available for use by thisDataBuffer. The array must be large enough to holdoffset + sizeelements.Note that DataBufferobjects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Parameters:
- dataArray- An array of- floats to be used as the first and only bank of this- DataBuffer.
- size- The number of elements of the array to be used.
- offset- The offset of the first element of the array that will be used.
 
- 
DataBufferFloatpublic DataBufferFloat(float[][] dataArray, int size)Constructs afloat-basedDataBufferwith the specified data arrays. Only the firstsizeelements of each array are available for use by thisDataBuffer. The number of banks will be equal todataArray.length.Note that DataBufferobjects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Parameters:
- dataArray- An array of arrays of- floats to be used as the banks of this- DataBuffer.
- size- The number of elements of each array to be used.
 
- 
DataBufferFloatpublic DataBufferFloat(float[][] dataArray, int size, int[] offsets)Constructs afloat-basedDataBufferwith the specified data arrays, size, and per-bank offsets. The number of banks is equal todataArray.length. Each array must be at least as large assizeplus the corresponding offset. There must be an entry in the offsets array for each data array.Note that DataBufferobjects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Parameters:
- dataArray- An array of arrays of- floats to be used as the banks of this- DataBuffer.
- size- The number of elements of each array to be used.
- offsets- An array of integer offsets, one for each bank.
 
 
- 
- 
Method Details- 
getDatapublic float[] getData()Returns the default (first)floatdata array.Note that calling this method may cause this DataBufferobject to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Returns:
- the first float data array.
 
- 
getDatapublic float[] getData(int bank)Returns the data array for the specified bank.Note that calling this method may cause this DataBufferobject to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Parameters:
- bank- the data array
- Returns:
- the data array specified by bank.
 
- 
getBankDatapublic float[][] getBankData()Returns the data array for all banks.Note that calling this method may cause this DataBufferobject to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).- Returns:
- all data arrays for this data buffer.
 
- 
getElempublic int getElem(int i)Returns the requested data array element from the first (default) bank as anint.- Overrides:
- getElemin class- DataBuffer
- Parameters:
- i- The desired data array element.
- Returns:
- The data entry as an int.
- See Also:
- setElem(int, int),- setElem(int, int, int)
 
- 
getElempublic int getElem(int bank, int i)Returns the requested data array element from the specified bank as anint.- Specified by:
- getElemin class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- Returns:
- The data entry as an int.
- See Also:
- setElem(int, int),- setElem(int, int, int)
 
- 
setElempublic void setElem(int i, int val)Sets the requested data array element in the first (default) bank to the givenint.- Overrides:
- setElemin class- DataBuffer
- Parameters:
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElem(int),- getElem(int, int)
 
- 
setElempublic void setElem(int bank, int i, int val)Sets the requested data array element in the specified bank to the givenint.- Specified by:
- setElemin class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElem(int),- getElem(int, int)
 
- 
getElemFloatpublic float getElemFloat(int i)Returns the requested data array element from the first (default) bank as afloat.- Overrides:
- getElemFloatin class- DataBuffer
- Parameters:
- i- The desired data array element.
- Returns:
- The data entry as a float.
- See Also:
- setElemFloat(int, float),- setElemFloat(int, int, float)
 
- 
getElemFloatpublic float getElemFloat(int bank, int i)Returns the requested data array element from the specified bank as afloat.- Overrides:
- getElemFloatin class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- Returns:
- The data entry as a float.
- See Also:
- setElemFloat(int, float),- setElemFloat(int, int, float)
 
- 
setElemFloatpublic void setElemFloat(int i, float val)Sets the requested data array element in the first (default) bank to the givenfloat.- Overrides:
- setElemFloatin class- DataBuffer
- Parameters:
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElemFloat(int),- getElemFloat(int, int)
 
- 
setElemFloatpublic void setElemFloat(int bank, int i, float val)Sets the requested data array element in the specified bank to the givenfloat.- Overrides:
- setElemFloatin class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElemFloat(int),- getElemFloat(int, int)
 
- 
getElemDoublepublic double getElemDouble(int i)Returns the requested data array element from the first (default) bank as adouble.- Overrides:
- getElemDoublein class- DataBuffer
- Parameters:
- i- The desired data array element.
- Returns:
- The data entry as a double.
- See Also:
- setElemDouble(int, double),- setElemDouble(int, int, double)
 
- 
getElemDoublepublic double getElemDouble(int bank, int i)Returns the requested data array element from the specified bank as adouble.- Overrides:
- getElemDoublein class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- Returns:
- The data entry as a double.
- See Also:
- setElemDouble(int, double),- setElemDouble(int, int, double)
 
- 
setElemDoublepublic void setElemDouble(int i, double val)Sets the requested data array element in the first (default) bank to the givendouble.- Overrides:
- setElemDoublein class- DataBuffer
- Parameters:
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElemDouble(int),- getElemDouble(int, int)
 
- 
setElemDoublepublic void setElemDouble(int bank, int i, double val)Sets the requested data array element in the specified bank to the givendouble.- Overrides:
- setElemDoublein class- DataBuffer
- Parameters:
- bank- The bank number.
- i- The desired data array element.
- val- The value to be set.
- See Also:
- getElemDouble(int),- getElemDouble(int, int)
 
 
-