Changed Methods |
int getDataType()
|
Documentation changed from old to new. |
Returns the data type of this DataBuffer. |
int getNumBanks()
|
Documentation changed from old to new. |
Returns the number of banks in this DataBuffer. |
int getOffset()
|
Documentation changed from old to new. |
Returns the offset of the default bank in array elements. |
int[] getOffsets()
|
Documentation changed from old to new. |
Returns the offsets (in array elements) of all the banks. |
int getSize()
|
Documentation changed from old to new. |
Returns the size (in array elements) of all banks. |
int getElem(int )
|
Documentation changed from old to new. |
Returns the requested data array element from the first (default) bank as an integer. |
int getElem(int, int)
|
Documentation changed from old to new. |
Returns the requested data array element from the specified bank as an integer. |
double getElemDouble(int )
|
Documentation changed from old to new. |
Returns the requested data array element from the first (default) bank as a double. |
double getElemDouble(int, int)
|
Documentation changed from old to new. |
Returns the requested data array element from the specified bank as a double. |
float getElemFloat(int )
|
Documentation changed from old to new. |
Returns the requested data array element from the first (default) bank as a float. |
float getElemFloat(int, int)
|
Documentation changed from old to new. |
Returns the requested data array element from the specified bank as a float. |
void setElem(int, int)
|
Documentation changed from old to new. |
Sets the requested data array element in the first (default) bank from the given integer. |
void setElem(int, int, int)
|
Documentation changed from old to new. |
Sets the requested data array element in the specified bank from the given integer. |
void setElemDouble(int, double)
|
Documentation changed from old to new. |
Sets the requested data array element in the first (default) bank from the given double. |
void setElemDouble(int, int, double)
|
Documentation changed from old to new. |
Sets the requested data array element in the specified bank from the given double. |
void setElemFloat(int, float)
|
Documentation changed from old to new. |
Sets the requested data array element in the first (default) bank from the given float. |
void setElemFloat(int, int, float)
|
Documentation changed from old to new. |
Sets the requested data array element in the specified bank from the given float. |