| Package | Description |
|---|---|
| org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
| org.bytedeco.javacpp.indexer |
Contains classes for multidimensional access of arrays and buffers.
|
| Modifier and Type | Method and Description |
|---|---|
CharPointer |
CharPointer.capacity(int capacity) |
CharPointer |
CharPointer.get(char[] array) |
CharPointer |
CharPointer.get(char[] array,
int offset,
int length)
Reads a portion of the native array into a Java array.
|
CharPointer |
CharPointer.limit(int limit) |
CharPointer |
CharPointer.position(int position) |
CharPointer |
CharPointer.put(char... array) |
CharPointer |
CharPointer.put(char c) |
CharPointer |
CharPointer.put(char[] array,
int offset,
int length)
Writes a portion of a Java array into the native array.
|
CharPointer |
CharPointer.put(int i,
char c)
Copies the
char value to the i-th element of a native array. |
CharPointer |
CharPointer.putString(String s)
Copies the String chars into native memory, including a terminating null char.
|
| Modifier and Type | Method and Description |
|---|---|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
int[] sizes,
int[] strides) |
static CharIndexer |
CharIndexer.create(CharPointer pointer,
int[] sizes,
int[] strides,
boolean direct)
Creates a char indexer to access efficiently the data of a pointer.
|
Copyright © 2015. All Rights Reserved.