Microsoft SDK for Java

ArrayWithOffset Class Constructors

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)

ArrayWithOffset(Object objArray, int nOffsetBytes)

Generic constructor that expects an array of primitive type and an offset in bytes.

Syntax

public ArrayWithOffset(Object objArray, int nOffsetBytes);

Parameters

objArray An array of primitive data type.
nOffsetBytes Offset in bytes.

ArrayWithOffset(byte[] array, int nOffsetBytes)

Constructor that expects a byte array and an offset in bytes.

Syntax

public ArrayWithOffset(byte[] array, int nOffsetBytes);

Parameters

array A byte array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(short[] array, int nOffsetBytes)

Constructor that expects a short array and an offset in bytes.

Syntax

public ArrayWithOffset(short[] array, int nOffsetBytes);

Parameters

array A short array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(int[] array, int nOffsetBytes)

Constructor that expects an integer array and an offset in bytes.

Syntax

public ArrayWithOffset(int[] array, int nOffsetBytes);

Parameters

array An integer array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(long[] array, int nOffsetBytes)

Constructor that expects a long array and an offset in bytes.

Syntax

public ArrayWithOffset(long[] array, int nOffsetBytes);

Parameters

array A long array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(float[] array, int nOffsetBytes)

Constructor that expects a float array and an offset in bytes.

Syntax

public ArrayWithOffset(float[] array, int nOffsetBytes);

Parameters

array A float array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(double[] array, int nOffsetBytes)

Constructor that expects a double array and an offset in bytes.

Syntax

public ArrayWithOffset(double[] array, int nOffsetBytes);

Parameters

array A double array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(char[] array, int nOffsetBytes)

Constructor that expects a character array and an offset in bytes.

Syntax

public ArrayWithOffset(char[] array, int nOffsetBytes);

Parameters

array A char array.
nOffsetBytes Offset in bytes.

ArrayWithOffset(boolean[] array, int nOffsetBytes)

Constructor that expects a Boolean array and an offset in bytes.

Syntax

public ArrayWithOffset(boolean[] array, int nOffsetBytes);

Parameters

array A Boolean array.
nOffsetBytes Offset in bytes.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.