PointerPointer<P> |
PointerPointer.capacity(long capacity) |
|
PointerPointer<P> |
PointerPointer.getPointer(long i) |
|
PointerPointer<P> |
PointerPointer.limit(long limit) |
|
PointerPointer<P> |
PointerPointer.position(long position) |
|
PointerPointer<P> |
PointerPointer.put(byte[]... array) |
Creates one by one a new BytePointer for each byte[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(char[]... array) |
Creates one by one a new CharPointer for each char[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(double[]... array) |
Creates one by one a new DoublePointer for each double[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(float[]... array) |
Creates one by one a new FloatPointer for each float[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(int[]... array) |
Creates one by one a new IntPointer for each int[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(long[]... array) |
Creates one by one a new LongPointer for each long[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(long i,
Pointer p) |
Copies the Pointer value to the i-th element of a native array.
|
PointerPointer<P> |
PointerPointer.put(short[]... array) |
Creates one by one a new ShortPointer for each short[] ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.put(Pointer p) |
|
PointerPointer<P> |
PointerPointer.put(P... array) |
Writes the Pointer values into the native void* array.
|
PointerPointer<P> |
PointerPointer.putString(java.lang.String... array) |
Creates one by one a new BytePointer for each String ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.putString(java.lang.String[] array,
java.lang.String charsetName) |
Creates one by one a new BytePointer for each String ,
and writes them into the native void* array.
|
PointerPointer<P> |
PointerPointer.putString(java.lang.String[] array,
java.nio.charset.Charset charset) |
Creates one by one a new BytePointer for each String ,
and writes them into the native void* array.
|