Class ListImgFactory<T>

    • Constructor Detail

      • ListImgFactory

        public ListImgFactory​(T type)
      • ListImgFactory

        @Deprecated
        public ListImgFactory()
        Deprecated.
    • Method Detail

      • create

        public ListImg<T> create​(long... dimensions)
        Description copied from class: ImgFactory
        Create an Img<T> with the specified dimensions.
        Specified by:
        create in class ImgFactory<T>
        Returns:
        new image with the specified dimensions.
      • create

        public ListImg<T> create​(Dimensions dimensions)
        Description copied from class: ImgFactory
        Create an Img<T> with the specified dimensions.
        Overrides:
        create in class ImgFactory<T>
        Returns:
        new image with the specified dimensions.
      • create

        public ListImg<T> create​(int[] dimensions)
        Description copied from class: ImgFactory
        Create an Img<T> with the specified dimensions.

        Note: This is not a vararg function because the underlying int[] based methods already copies the int[] dimensions into a disposable long[] anyways. This would be an unnecessary copy for int... varargs.

        Overrides:
        create in class ImgFactory<T>
        Returns:
        new image with the specified dimensions.
      • create

        @Deprecated
        public ListImg<T> create​(long[] dim,
                                 T type)
        Deprecated.
        Specified by:
        create in class ImgFactory<T>