All Known Implementing Classes:
Arrs, ArrsGeneric, ArrsPrimitive

public interface IArrsConstants
Interface used to handle constants for arrays.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final byte[]
    An empty array of Byte representing the absence of data
    static final char[]
    An empty array of Character representing the absence of data
    static final double[]
    An empty array of Double representing the absence of data
    static final int
    The null size of the arrays
    static final float[]
    An empty array of Float representing the absence of data
    static final int
    number to represent not found operation in the arrays
    static final int[]
    An empty array of Integer representing the absence of data
    static final long[]
    An empty array of Long representing the absence of data
    static final Object[]
    An empty array of Object representing the absence of data
    static final short[]
    An empty array of Short representing the absence of data
  • Field Details

    • INDEX_NOT_FOUND

      static final int INDEX_NOT_FOUND
      number to represent not found operation in the arrays
      See Also:
    • EMPTY_SIZE

      static final int EMPTY_SIZE
      The null size of the arrays
      See Also:
    • OBJ_EMPTY

      static final Object[] OBJ_EMPTY
      An empty array of Object representing the absence of data
    • CHAR_EMPTY

      static final char[] CHAR_EMPTY
      An empty array of Character representing the absence of data
    • BYTE_EMPTY

      static final byte[] BYTE_EMPTY
      An empty array of Byte representing the absence of data
    • SHORT_EMPTY

      static final short[] SHORT_EMPTY
      An empty array of Short representing the absence of data
    • INT_EMPTY

      static final int[] INT_EMPTY
      An empty array of Integer representing the absence of data
    • LONG_EMPTY

      static final long[] LONG_EMPTY
      An empty array of Long representing the absence of data
    • FLOAT_EMPTY

      static final float[] FLOAT_EMPTY
      An empty array of Float representing the absence of data
    • DOUBLE_EMPTY

      static final double[] DOUBLE_EMPTY
      An empty array of Double representing the absence of data