| java.lang.Object org.apache.harmony.awt.nativebridge.VoidPointer org.apache.harmony.awt.nativebridge.DoublePointer
Method Summary | |
public void | fill(double value, int size) | public double | get(int index) Returns the element at the specified position. | public void | get(double[] dst, int offset, int length) This method transfers int values into the given destination array. | public DoublePointer | getElementPointer(int index) returns class that represents the pointer to specified index. | public void | set(int index, double value) Sets the element at the specified position. | public void | set(double[] src, int offset, int length) This method transfers double values from the given destination array. | public int | size() |
DoublePointer | DoublePointer(int size, boolean direct)(Code) | | |
DoublePointer | DoublePointer(long add)(Code) | | |
fill | public void fill(double value, int size)(Code) | | |
get | public double get(int index)(Code) | | Returns the element at the specified position.
Parameters: index - |
get | public void get(double[] dst, int offset, int length)(Code) | | This method transfers int values into the given destination array.
Parameters: dst - - The array into which values are to be written Parameters: offset - - The offset within the array of the first element to be written;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be written to the given array;must be non-negative and no larger than dst.length - offset |
getElementPointer | public DoublePointer getElementPointer(int index)(Code) | | returns class that represents the pointer to specified index.
|
set | public void set(int index, double value)(Code) | | Sets the element at the specified position.
Parameters: index - Parameters: value - |
set | public void set(double[] src, int offset, int length)(Code) | | This method transfers double values from the given destination array.
Parameters: src - - The array from which values are to be read Parameters: offset - - The offset within the array of the first element to be read;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be read from the given array;must be non-negative and no larger than dst.length - offset |
|
|