Uses of Class
org.bytedeco.javacpp.CharPointer
Packages that use CharPointer
Package
Description
Contains the main set of classes for JavaCPP at runtime.
Contains classes for multidimensional access of arrays and buffers.
-
Uses of CharPointer in org.bytedeco.javacpp
Methods in org.bytedeco.javacpp that return CharPointerModifier and TypeMethodDescriptionCharPointer.capacity
(long capacity) CharPointer.get
(char[] array) CharPointer.get
(char[] array, int offset, int length) Reads a portion of the native array into a Java array.CharPointer.getPointer
(long i) CharPointer.limit
(long limit) CharPointer.position
(long position) CharPointer.put
(char c) CharPointer.put
(char... array) CharPointer.put
(char[] array, int offset, int length) Writes a portion of a Java array into the native array.CharPointer.put
(long i, char c) Copies thechar
value to the i-th element of a native array.Copies the String chars into native memory, including a terminating null char. -
Uses of CharPointer in org.bytedeco.javacpp.indexer
Fields in org.bytedeco.javacpp.indexer declared as CharPointerModifier and TypeFieldDescriptionprotected CharPointer
CharRawIndexer.pointer
The backing pointer.Methods in org.bytedeco.javacpp.indexer with parameters of type CharPointerModifier and TypeMethodDescriptionstatic CharIndexer
CharIndexer.create
(CharPointer pointer) Returnsnew CharRawIndexer(pointer)
static CharIndexer
CharIndexer.create
(CharPointer pointer, long... sizes) Returnsnew CharRawIndexer(pointer, sizes)
static CharIndexer
CharIndexer.create
(CharPointer pointer, long[] sizes, long[] strides) Returnsnew CharRawIndexer(pointer, sizes, strides)
static CharIndexer
CharIndexer.create
(CharPointer pointer, long[] sizes, long[] strides, boolean direct) Returnscreate(pointer, Index.create(sizes, strides), direct)
static CharIndexer
CharIndexer.create
(CharPointer pointer, Index index) Returnsnew CharRawIndexer(pointer, index)
static CharIndexer
CharIndexer.create
(CharPointer pointer, Index index, boolean direct) Creates a char indexer to access efficiently the data of a pointer.Constructors in org.bytedeco.javacpp.indexer with parameters of type CharPointerModifierConstructorDescriptionCharRawIndexer
(CharPointer pointer) CallsCharRawIndexer(pointer, Index.create(pointer.limit() - pointer.position()))
.CharRawIndexer
(CharPointer pointer, long... sizes) CallsCharRawIndexer(pointer, Index.create(sizes))
.CharRawIndexer
(CharPointer pointer, long[] sizes, long[] strides) CallsCharRawIndexer(pointer, Index.create(sizes, strides))
.CharRawIndexer
(CharPointer pointer, Index index) Constructor to set theCharRawIndexer.pointer
andIndexer.index
.