Class Size.Size3D

  • Enclosing class:
    Size

    public static class Size.Size3D
    extends Size
    A class for representing the size (i.e., length of each dimension) a 3-dimensional array. This is mainly used as syntactic sugar.
    • Constructor Detail

      • Size3D

        public Size3D()
    • Method Detail

      • build

        public static Size.Size3D build​(int length0,
                                        int length1,
                                        int length2)
        Builds an object that represents the size (i.e., length of each dimension) of a 3-dimensional array.
        Parameters:
        length0 - the size (length) of the first dimension of a 3-dimensional array
        length1 - the size (length) of the second dimension of a 3-dimensional array
        length2 - the size (length) of the third dimension of a 3-dimensional array
        Returns:
        an object that represents the size (i.e., length of each dimension) of a 3-dimensional array