Interface IArrsConstants
- All Known Implementing Classes:
Arrs,ArrsGeneric,ArrsPrimitive
public interface IArrsConstants
Interface used to handle constants for arrays.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final byte[]An empty array ofByterepresenting the absence of datastatic final char[]An empty array ofCharacterrepresenting the absence of datastatic final double[]An empty array ofDoublerepresenting the absence of datastatic final intThe null size of the arraysstatic final float[]An empty array ofFloatrepresenting the absence of datastatic final intnumber to represent not found operation in the arraysstatic final int[]An empty array ofIntegerrepresenting the absence of datastatic final long[]An empty array ofLongrepresenting the absence of datastatic final Object[]An empty array ofObjectrepresenting the absence of datastatic final short[]An empty array ofShortrepresenting the absence of data
-
Field Details
-
INDEX_NOT_FOUND
static final int INDEX_NOT_FOUNDnumber to represent not found operation in the arrays- See Also:
-
EMPTY_SIZE
static final int EMPTY_SIZEThe null size of the arrays- See Also:
-
OBJ_EMPTY
An empty array ofObjectrepresenting the absence of data -
CHAR_EMPTY
static final char[] CHAR_EMPTYAn empty array ofCharacterrepresenting the absence of data -
BYTE_EMPTY
static final byte[] BYTE_EMPTYAn empty array ofByterepresenting the absence of data -
SHORT_EMPTY
static final short[] SHORT_EMPTYAn empty array ofShortrepresenting the absence of data -
INT_EMPTY
static final int[] INT_EMPTYAn empty array ofIntegerrepresenting the absence of data -
LONG_EMPTY
static final long[] LONG_EMPTYAn empty array ofLongrepresenting the absence of data -
FLOAT_EMPTY
static final float[] FLOAT_EMPTYAn empty array ofFloatrepresenting the absence of data -
DOUBLE_EMPTY
static final double[] DOUBLE_EMPTYAn empty array ofDoublerepresenting the absence of data
-