Uses of Class
org.bytedeco.javacpp.indexer.CharIndexer
Packages that use CharIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
-
Uses of CharIndexer in org.bytedeco.javacpp.indexer
Subclasses of CharIndexer in org.bytedeco.javacpp.indexerModifier and TypeClassDescriptionclass
An indexer for achar[]
array.class
An indexer for aCharBuffer
.class
An indexer for aCharPointer
using theRaw
instance.Methods in org.bytedeco.javacpp.indexer that return CharIndexerModifier and TypeMethodDescriptionstatic CharIndexer
CharIndexer.create
(char[] array) Returnsnew CharArrayIndexer(array)
static CharIndexer
CharIndexer.create
(char[] array, long... sizes) Returnsnew CharArrayIndexer(array, sizes)
static CharIndexer
CharIndexer.create
(char[] array, long[] sizes, long[] strides) Returnsnew CharArrayIndexer(array, sizes, strides)
static CharIndexer
Returnsnew CharArrayIndexer(array, index)
static CharIndexer
CharIndexer.create
(CharBuffer buffer) Returnsnew CharBufferIndexer(buffer)
static CharIndexer
CharIndexer.create
(CharBuffer buffer, long... sizes) Returnsnew CharBufferIndexer(buffer, sizes)
static CharIndexer
CharIndexer.create
(CharBuffer buffer, long[] sizes, long[] strides) Returnsnew CharBufferIndexer(buffer, sizes, strides)
static CharIndexer
CharIndexer.create
(CharBuffer buffer, Index index) Returnsnew CharBufferIndexer(buffer, index)
static 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.CharArrayIndexer.get
(long[] indices, char[] c, int offset, int length) CharArrayIndexer.get
(long i, char[] c, int offset, int length) CharArrayIndexer.get
(long i, long j, char[] c, int offset, int length) CharBufferIndexer.get
(long[] indices, char[] c, int offset, int length) CharBufferIndexer.get
(long i, char[] c, int offset, int length) CharBufferIndexer.get
(long i, long j, char[] c, int offset, int length) CharIndexer.get
(long[] indices, char[] c) Returnsthis
wherec = array/buffer[index(indices)]
abstract CharIndexer
CharIndexer.get
(long[] indices, char[] c, int offset, int length) Returnsthis
wherec[offset:offset + length] = array/buffer[index(indices)]
CharIndexer.get
(long i, char[] c) Returnsthis
wherec = array/buffer[index(i)]
abstract CharIndexer
CharIndexer.get
(long i, char[] c, int offset, int length) Returnsthis
wherec[offset:offset + length] = array/buffer[index(i)]
CharIndexer.get
(long i, long j, char[] c) Returnsthis
wherec = array/buffer[index(i, j)]
abstract CharIndexer
CharIndexer.get
(long i, long j, char[] c, int offset, int length) Returnsthis
wherec[offset:offset + length] = array/buffer[index(i, j)]
CharRawIndexer.get
(long[] indices, char[] c, int offset, int length) CharRawIndexer.get
(long i, char[] c, int offset, int length) CharRawIndexer.get
(long i, long j, char[] c, int offset, int length) CharArrayIndexer.put
(long[] indices, char c) CharArrayIndexer.put
(long[] indices, char[] c, int offset, int length) CharArrayIndexer.put
(long i, char c) CharArrayIndexer.put
(long i, char[] c, int offset, int length) CharArrayIndexer.put
(long i, long j, char c) CharArrayIndexer.put
(long i, long j, char[] c, int offset, int length) CharArrayIndexer.put
(long i, long j, long k, char c) CharBufferIndexer.put
(long[] indices, char c) CharBufferIndexer.put
(long[] indices, char[] c, int offset, int length) CharBufferIndexer.put
(long i, char c) CharBufferIndexer.put
(long i, char[] c, int offset, int length) CharBufferIndexer.put
(long i, long j, char c) CharBufferIndexer.put
(long i, long j, char[] c, int offset, int length) CharBufferIndexer.put
(long i, long j, long k, char c) abstract CharIndexer
CharIndexer.put
(long[] indices, char c) Returnsthis
wherearray/buffer[index(indices)] = c
CharIndexer.put
(long[] indices, char... c) Returnsthis
wherearray/buffer[index(indices)] = c
abstract CharIndexer
CharIndexer.put
(long[] indices, char[] c, int offset, int length) Returnsthis
wherearray/buffer[index(indices)] = c[offset:offset + length]
abstract CharIndexer
CharIndexer.put
(long i, char c) Returnsthis
wherearray/buffer[index(i)] = c
CharIndexer.put
(long i, char... c) Returnsthis
wherearray/buffer[index(i)] = c
abstract CharIndexer
CharIndexer.put
(long i, char[] c, int offset, int length) Returnsthis
wherearray/buffer[index(i)] = c[offset:offset + length]
abstract CharIndexer
CharIndexer.put
(long i, long j, char c) Returnsthis
wherearray/buffer[index(i, j)] = c
CharIndexer.put
(long i, long j, char... c) Returnsthis
wherearray/buffer[index(i, j)] = c
abstract CharIndexer
CharIndexer.put
(long i, long j, char[] c, int offset, int length) Returnsthis
wherearray/buffer[index(i, j)] = c[offset:offset + length]
abstract CharIndexer
CharIndexer.put
(long i, long j, long k, char c) Returnsthis
wherearray/buffer[index(i, j, k)] = c
CharRawIndexer.put
(long[] indices, char c) CharRawIndexer.put
(long[] indices, char[] c, int offset, int length) CharRawIndexer.put
(long i, char c) CharRawIndexer.put
(long i, char[] c, int offset, int length) CharRawIndexer.put
(long i, long j, char c) CharRawIndexer.put
(long i, long j, char[] c, int offset, int length) CharRawIndexer.put
(long i, long j, long k, char c) CharIndexer.putDouble
(long[] indices, double c) CharRawIndexer.putRaw
(long i, char c)