Uses of Class
org.bytedeco.javacpp.CharPointer
-
Packages that use CharPointer 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. -
-
Uses of CharPointer in org.bytedeco.javacpp
Methods in org.bytedeco.javacpp that return CharPointer Modifier and Type Method Description CharPointerCharPointer. capacity(long capacity)CharPointerCharPointer. get(char[] array)CharPointerCharPointer. get(char[] array, int offset, int length)Reads a portion of the native array into a Java array.CharPointerCharPointer. getPointer(long i)CharPointerCharPointer. limit(long limit)CharPointerCharPointer. position(long position)CharPointerCharPointer. put(char c)CharPointerCharPointer. put(char... array)CharPointerCharPointer. put(char[] array, int offset, int length)Writes a portion of a Java array into the native array.CharPointerCharPointer. put(long i, char c)Copies thecharvalue to the i-th element of a native array.CharPointerCharPointer. putString(java.lang.String s)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 CharPointer Modifier and Type Field Description protected CharPointerCharRawIndexer. pointerThe backing pointer.Methods in org.bytedeco.javacpp.indexer with parameters of type CharPointer Modifier and Type Method Description static CharIndexerCharIndexer. create(CharPointer pointer)Returnsnew CharRawIndexer(pointer)static CharIndexerCharIndexer. create(CharPointer pointer, long... sizes)Returnsnew CharRawIndexer(pointer, sizes)static CharIndexerCharIndexer. create(CharPointer pointer, long[] sizes, long[] strides)Returnsnew CharRawIndexer(pointer, sizes, strides)static CharIndexerCharIndexer. create(CharPointer pointer, long[] sizes, long[] strides, boolean direct)Returnscreate(pointer, Index.create(sizes, strides), direct)static CharIndexerCharIndexer. create(CharPointer pointer, Index index)Returnsnew CharRawIndexer(pointer, index)static CharIndexerCharIndexer. 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 CharPointer Constructor Description CharRawIndexer(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.pointerandIndexer.index.
-