Uses of Class
org.bytedeco.javacpp.indexer.UByteIndexer
Packages that use UByteIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
-
Uses of UByteIndexer in org.bytedeco.javacpp.indexer
Subclasses of UByteIndexer in org.bytedeco.javacpp.indexerModifier and TypeClassDescriptionclass
An indexer for abyte[]
array, treated as unsigned.class
An indexer for aByteBuffer
, treated as unsigned.class
An indexer for aBytePointer
using theRaw
instance, treated as unsigned.Methods in org.bytedeco.javacpp.indexer that return UByteIndexerModifier and TypeMethodDescriptionstatic UByteIndexer
UByteIndexer.create
(byte[] array) Returnsnew UByteArrayIndexer(array)
static UByteIndexer
UByteIndexer.create
(byte[] array, long... sizes) Returnsnew UByteArrayIndexer(array, sizes)
static UByteIndexer
UByteIndexer.create
(byte[] array, long[] sizes, long[] strides) Returnsnew ByteArrayIndexer(array, sizes, strides)
static UByteIndexer
Returnsnew UByteArrayIndexer(array, index)
static UByteIndexer
UByteIndexer.create
(ByteBuffer buffer) Returnsnew UByteBufferIndexer(buffer)
static UByteIndexer
UByteIndexer.create
(ByteBuffer buffer, long... sizes) Returnsnew UByteBufferIndexer(buffer, sizes)
static UByteIndexer
UByteIndexer.create
(ByteBuffer buffer, long[] sizes, long[] strides) Returnsnew ByteBufferIndexer(buffer, sizes, strides)
static UByteIndexer
UByteIndexer.create
(ByteBuffer buffer, Index index) Returnsnew UByteBufferIndexer(buffer, index)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer) Returnsnew UByteRawIndexer(pointer)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer, long... sizes) Returnsnew UByteRawIndexer(pointer, index)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer, long[] sizes, long[] strides) Returnsnew UByteRawIndexer(pointer, sizes, strides)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer, long[] sizes, long[] strides, boolean direct) Returnscreate(pointer, Index.create(sizes, strides), direct)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer, Index index) Returnsnew UByteRawIndexer(pointer, index)
static UByteIndexer
UByteIndexer.create
(BytePointer pointer, Index index, boolean direct) Creates a byte indexer to access efficiently the data of a pointer.UByteArrayIndexer.get
(long[] indices, int[] b, int offset, int length) UByteArrayIndexer.get
(long i, int[] b, int offset, int length) UByteArrayIndexer.get
(long i, long j, int[] b, int offset, int length) UByteBufferIndexer.get
(long[] indices, int[] b, int offset, int length) UByteBufferIndexer.get
(long i, int[] b, int offset, int length) UByteBufferIndexer.get
(long i, long j, int[] b, int offset, int length) UByteIndexer.get
(long[] indices, int[] b) Returnsthis
whereb = array/buffer[index(indices)]
abstract UByteIndexer
UByteIndexer.get
(long[] indices, int[] b, int offset, int length) Returnsthis
whereb[offset:offset + length] = array/buffer[index(indices)]
UByteIndexer.get
(long i, int[] b) Returnsthis
whereb = array/buffer[index(i)]
abstract UByteIndexer
UByteIndexer.get
(long i, int[] b, int offset, int length) Returnsthis
whereb[offset:offset + length] = array/buffer[index(i)]
UByteIndexer.get
(long i, long j, int[] b) Returnsthis
whereb = array/buffer[index(i, j)]
abstract UByteIndexer
UByteIndexer.get
(long i, long j, int[] b, int offset, int length) Returnsthis
whereb[offset:offset + length] = array/buffer[index(i, j)]
UByteRawIndexer.get
(long[] indices, int[] b, int offset, int length) UByteRawIndexer.get
(long i, int[] b, int offset, int length) UByteRawIndexer.get
(long i, long j, int[] b, int offset, int length) UByteArrayIndexer.put
(long[] indices, int b) UByteArrayIndexer.put
(long[] indices, int[] b, int offset, int length) UByteArrayIndexer.put
(long i, int b) UByteArrayIndexer.put
(long i, int[] b, int offset, int length) UByteArrayIndexer.put
(long i, long j, int b) UByteArrayIndexer.put
(long i, long j, int[] b, int offset, int length) UByteArrayIndexer.put
(long i, long j, long k, int b) UByteBufferIndexer.put
(long[] indices, int b) UByteBufferIndexer.put
(long[] indices, int[] b, int offset, int length) UByteBufferIndexer.put
(long i, int b) UByteBufferIndexer.put
(long i, int[] b, int offset, int length) UByteBufferIndexer.put
(long i, long j, int b) UByteBufferIndexer.put
(long i, long j, int[] b, int offset, int length) UByteBufferIndexer.put
(long i, long j, long k, int b) abstract UByteIndexer
UByteIndexer.put
(long[] indices, int b) Returnsthis
wherearray/buffer[index(indices)] = b
UByteIndexer.put
(long[] indices, int... b) Returnsthis
wherearray/buffer[index(indices)] = b
abstract UByteIndexer
UByteIndexer.put
(long[] indices, int[] b, int offset, int length) Returnsthis
wherearray/buffer[index(indices)] = b[offset:offset + length]
abstract UByteIndexer
UByteIndexer.put
(long i, int b) Returnsthis
wherearray/buffer[index(i)] = b
UByteIndexer.put
(long i, int... b) Returnsthis
wherearray/buffer[index(i)] = b
abstract UByteIndexer
UByteIndexer.put
(long i, int[] b, int offset, int length) Returnsthis
wherearray/buffer[index(i)] = b[offset:offset + length]
abstract UByteIndexer
UByteIndexer.put
(long i, long j, int b) Returnsthis
wherearray/buffer[index(i, j)] = b
UByteIndexer.put
(long i, long j, int... b) Returnsthis
wherearray/buffer[index(i, j)] = b
abstract UByteIndexer
UByteIndexer.put
(long i, long j, int[] b, int offset, int length) Returnsthis
wherearray/buffer[index(i, j)] = b[offset:offset + length]
abstract UByteIndexer
UByteIndexer.put
(long i, long j, long k, int b) Returnsthis
wherearray/buffer[index(i, j, k)] = b
UByteRawIndexer.put
(long[] indices, int b) UByteRawIndexer.put
(long[] indices, int[] b, int offset, int length) UByteRawIndexer.put
(long i, int b) UByteRawIndexer.put
(long i, int[] b, int offset, int length) UByteRawIndexer.put
(long i, long j, int b) UByteRawIndexer.put
(long i, long j, int[] b, int offset, int length) UByteRawIndexer.put
(long i, long j, long k, int b) UByteIndexer.putDouble
(long[] indices, double b) UByteRawIndexer.putRaw
(long i, int b)