Uses of Class java.nio.DoubleBuffer

Uses in package java.nio

Methods with parameter type java.nio.DoubleBuffer

int
Compares two DoubleBuffer objects.
DoubleBuffer
Writes the content of the the DoubleBUFFER src into the buffer.

Methods with return type java.nio.DoubleBuffer

DoubleBuffer
DoubleBuffer.allocate(int capacity)
Allocates a new DoubleBuffer object with a given capacity.
DoubleBuffer
Creates a view of this byte buffer as a double buffer.
DoubleBuffer
Creates a new read-only DoubleBuffer that shares this buffer's content.
DoubleBuffer
Compacts this buffer.
DoubleBuffer
Creates a new DoubleBuffer that shares this buffer's content.
DoubleBuffer
DoubleBuffer.get(double[] dst)
This method transfers doubles from this buffer into the given destination array.
DoubleBuffer
DoubleBuffer.get(double[] dst, int offset, int length)
This method transfers doubles from this buffer into the given destination array.
DoubleBuffer
DoubleBuffer.put(double b)
Writes the double at this buffer's current position, and then increments the position.
DoubleBuffer
DoubleBuffer.put(double[] src)
Writes the content of the the double array src into the buffer.
DoubleBuffer
DoubleBuffer.put(double[] src, int offset, int length)
Writes the content of the the double array src into the buffer.
DoubleBuffer
DoubleBuffer.put(int index, double b)
Absolute put method.
DoubleBuffer
Writes the content of the the DoubleBUFFER src into the buffer.
DoubleBuffer
Creates a new DoubleBuffer whose content is a shared subsequence of this buffer's content.
DoubleBuffer
DoubleBuffer.wrap(double[] array)
Wraps a double array into a DoubleBuffer object.
DoubleBuffer
DoubleBuffer.wrap(double[] array, int offset, int length)
Wraps a double array into a DoubleBuffer object.