Uses of Class
org.bytedeco.javacpp.indexer.ShortIndexer
Packages that use ShortIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
-
Uses of ShortIndexer in org.bytedeco.javacpp.indexer
Subclasses of ShortIndexer in org.bytedeco.javacpp.indexerModifier and TypeClassDescriptionclassAn indexer for ashort[]array.classAn indexer for aShortBuffer.classAn indexer for aShortPointerusing theRawinstance.Methods in org.bytedeco.javacpp.indexer that return ShortIndexerModifier and TypeMethodDescriptionstatic ShortIndexerShortIndexer.create(short[] array) Returnsnew ShortArrayIndexer(array)static ShortIndexerShortIndexer.create(short[] array, long... sizes) Returnsnew ShortArrayIndexer(array, sizes)static ShortIndexerShortIndexer.create(short[] array, long[] sizes, long[] strides) Returnsnew ShortArrayIndexer(array, sizes, strides)static ShortIndexerReturnsnew ShortArrayIndexer(array, index)static ShortIndexerShortIndexer.create(ShortBuffer buffer) Returnsnew ShortBufferIndexer(buffer)static ShortIndexerShortIndexer.create(ShortBuffer buffer, long... sizes) Returnsnew ShortBufferIndexer(buffer, sizes)static ShortIndexerShortIndexer.create(ShortBuffer buffer, long[] sizes, long[] strides) Returnsnew ShortBufferIndexer(buffer, sizes, strides)static ShortIndexerShortIndexer.create(ShortBuffer buffer, Index index) Returnsnew ShortBufferIndexer(buffer, index)static ShortIndexerShortIndexer.create(ShortPointer pointer) Returnsnew ShortRawIndexer(pointer)static ShortIndexerShortIndexer.create(ShortPointer pointer, long... sizes) Returnsnew ShortRawIndexer(pointer, sizes)static ShortIndexerShortIndexer.create(ShortPointer pointer, long[] sizes, long[] strides) Returnsnew ShortRawIndexer(pointer, sizes, strides)static ShortIndexerShortIndexer.create(ShortPointer pointer, long[] sizes, long[] strides, boolean direct) Returnscreate(pointer, Index.create(sizes, strides), direct)static ShortIndexerShortIndexer.create(ShortPointer pointer, Index index) Returnsnew ShortRawIndexer(pointer, index)static ShortIndexerShortIndexer.create(ShortPointer pointer, Index index, boolean direct) Creates a short indexer to access efficiently the data of a pointer.ShortArrayIndexer.get(long[] indices, short[] s, int offset, int length) ShortArrayIndexer.get(long i, long j, short[] s, int offset, int length) ShortArrayIndexer.get(long i, short[] s, int offset, int length) ShortBufferIndexer.get(long[] indices, short[] s, int offset, int length) ShortBufferIndexer.get(long i, long j, short[] s, int offset, int length) ShortBufferIndexer.get(long i, short[] s, int offset, int length) ShortIndexer.get(long[] indices, short[] s) Returnsthiswheres = array/buffer[index(indices)]abstract ShortIndexerShortIndexer.get(long[] indices, short[] s, int offset, int length) Returnsthiswheres[offset:offset + length] = array/buffer[index(indices)]ShortIndexer.get(long i, long j, short[] s) Returnsthiswheres = array/buffer[index(i, j)]abstract ShortIndexerShortIndexer.get(long i, long j, short[] s, int offset, int length) Returnsthiswheres[offset:offset + length] = array/buffer[index(i, j)]ShortIndexer.get(long i, short[] s) Returnsthiswheres = array/buffer[index(i)]abstract ShortIndexerShortIndexer.get(long i, short[] s, int offset, int length) Returnsthiswheres[offset:offset + length] = array/buffer[index(i)]ShortRawIndexer.get(long[] indices, short[] s, int offset, int length) ShortRawIndexer.get(long i, long j, short[] s, int offset, int length) ShortRawIndexer.get(long i, short[] s, int offset, int length) ShortArrayIndexer.put(long[] indices, short s) ShortArrayIndexer.put(long[] indices, short[] s, int offset, int length) ShortArrayIndexer.put(long i, long j, long k, short s) ShortArrayIndexer.put(long i, long j, short s) ShortArrayIndexer.put(long i, long j, short[] s, int offset, int length) ShortArrayIndexer.put(long i, short s) ShortArrayIndexer.put(long i, short[] s, int offset, int length) ShortBufferIndexer.put(long[] indices, short s) ShortBufferIndexer.put(long[] indices, short[] s, int offset, int length) ShortBufferIndexer.put(long i, long j, long k, short s) ShortBufferIndexer.put(long i, long j, short s) ShortBufferIndexer.put(long i, long j, short[] s, int offset, int length) ShortBufferIndexer.put(long i, short s) ShortBufferIndexer.put(long i, short[] s, int offset, int length) abstract ShortIndexerShortIndexer.put(long[] indices, short s) Returnsthiswherearray/buffer[index(indices)] = sShortIndexer.put(long[] indices, short... s) Returnsthiswherearray/buffer[index(indices)] = sabstract ShortIndexerShortIndexer.put(long[] indices, short[] s, int offset, int length) Returnsthiswherearray/buffer[index(indices)] = s[offset:offset + length]abstract ShortIndexerShortIndexer.put(long i, long j, long k, short s) Returnsthiswherearray/buffer[index(i, j, k)] = sabstract ShortIndexerShortIndexer.put(long i, long j, short s) Returnsthiswherearray/buffer[index(i, j)] = sShortIndexer.put(long i, long j, short... s) Returnsthiswherearray/buffer[index(i, j)] = sabstract ShortIndexerShortIndexer.put(long i, long j, short[] s, int offset, int length) Returnsthiswherearray/buffer[index(i, j)] = s[offset:offset + length]abstract ShortIndexerShortIndexer.put(long i, short s) Returnsthiswherearray/buffer[index(i)] = sShortIndexer.put(long i, short... s) Returnsthiswherearray/buffer[index(i)] = sabstract ShortIndexerShortIndexer.put(long i, short[] s, int offset, int length) Returnsthiswherearray/buffer[index(i)] = s[offset:offset + length]ShortRawIndexer.put(long[] indices, short s) ShortRawIndexer.put(long[] indices, short[] s, int offset, int length) ShortRawIndexer.put(long i, long j, long k, short s) ShortRawIndexer.put(long i, long j, short s) ShortRawIndexer.put(long i, long j, short[] s, int offset, int length) ShortRawIndexer.put(long i, short s) ShortRawIndexer.put(long i, short[] s, int offset, int length) ShortIndexer.putDouble(long[] indices, double s) ShortRawIndexer.putRaw(long i, short s)