The ArrayWithOffset class contains the following constructors:
ArrayWithOffset(Object objArray, int nOffsetBytes)
ArrayWithOffset(byte[] array, int nOffsetBytes)
ArrayWithOffset(short[] array, int nOffsetBytes)
ArrayWithOffset(int[] array, int nOffsetBytes)
ArrayWithOffset(long[] array, int nOffsetBytes)
ArrayWithOffset(float[] array, int nOffsetBytes)
ArrayWithOffset(double[] array, int nOffsetBytes)
ArrayWithOffset(char[] array, int nOffsetBytes)
ArrayWithOffset(boolean[] array, int nOffsetBytes)
Generic constructor that expects an array of primitive type and an offset in bytes.
public ArrayWithOffset(Object objArray, int nOffsetBytes);
objArray | An array of primitive data type. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a byte array and an offset in bytes.
public ArrayWithOffset(byte[] array, int nOffsetBytes);
array | A byte array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a short array and an offset in bytes.
public ArrayWithOffset(short[] array, int nOffsetBytes);
array | A short array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects an integer array and an offset in bytes.
public ArrayWithOffset(int[] array, int nOffsetBytes);
array | An integer array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a long array and an offset in bytes.
public ArrayWithOffset(long[] array, int nOffsetBytes);
array | A long array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a float array and an offset in bytes.
public ArrayWithOffset(float[] array, int nOffsetBytes);
array | A float array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a double array and an offset in bytes.
public ArrayWithOffset(double[] array, int nOffsetBytes);
array | A double array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a character array and an offset in bytes.
public ArrayWithOffset(char[] array, int nOffsetBytes);
array | A char array. |
nOffsetBytes | Offset in bytes. |
Constructor that expects a Boolean array and an offset in bytes.
public ArrayWithOffset(boolean[] array, int nOffsetBytes);
array | A Boolean array. |
nOffsetBytes | Offset in bytes. |