| Package | Description |
|---|---|
| org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
| Modifier and Type | Method and Description |
|---|---|
BytePointer |
BytePointer.capacity(int capacity) |
BytePointer |
BytePointer.get(byte[] array) |
BytePointer |
BytePointer.get(byte[] array,
int offset,
int length)
Reads a portion of the native array into a Java array.
|
BytePointer |
BytePointer.limit(int limit) |
BytePointer |
BytePointer.position(int position) |
BytePointer |
BytePointer.put(byte... array) |
BytePointer |
BytePointer.put(byte b) |
BytePointer |
BytePointer.put(byte[] array,
int offset,
int length)
Writes a portion of a Java array into the native array.
|
BytePointer |
BytePointer.put(int i,
byte b)
Copies the
byte value to the i-th element of a native array. |
BytePointer |
BytePointer.putString(String s)
Encodes the String into the platform's default charset and copies it in
native memory, including a terminating null byte.
|
BytePointer |
BytePointer.putString(String s,
String charsetName)
Encodes the String into the named charset and copies it in native memory,
including a terminating null byte.
|
Copyright © 2014. All Rights Reserved.