Class MLKit


  • public final class MLKit
    extends java.lang.Object
    Provides access to data serialization and deserialization functions for MLKit integrations. Currently, supports byte, short, float, int, double and long , N-Dimension (where N is a value between 1 and 4) array conversion to and from InputStream
    • Constructor Summary

      Constructors 
      Constructor Description
      MLKit()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.io.InputStream fromBase64​(java.lang.String base64)
      Decode InputStream from Base64.
      static void toArray​(java.io.InputStream is, byte[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, byte[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, double[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, float[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, int[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, long[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static void toArray​(java.io.InputStream is, short[][][][][][][][] array)
      Copies the contents of an InputStream to a provided array.
      static java.lang.String toBase64​(java.io.InputStream is)
      Encode InputStream to Base64.
      static java.io.InputStream toInputStream​(byte[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(byte[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(double[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(float[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(int[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(long[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][][][][][] array)
      Convert an array to an instance of InputStream.
      static java.io.InputStream toInputStream​(short[][][][][][][][] array)
      Convert an array to an instance of InputStream.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MLKit

        public MLKit()
    • Method Detail

      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   byte[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[] array)
                            throws java.io.IOException
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
        Throws:
        java.io.IOException
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   short[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   int[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   long[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   float[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toArray

        public static void toArray​(java.io.InputStream is,
                                   double[][][][][][][][] array)
        Copies the contents of an InputStream to a provided array.
        Parameters:
        is - the InputStream to read contents and copy to a provided array
        array - the provided array
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(byte[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(short[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(int[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(long[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(float[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toInputStream

        public static java.io.InputStream toInputStream​(double[][][][][][][][] array)
        Convert an array to an instance of InputStream.
        Parameters:
        array - to convert to InputStream
      • toBase64

        public static java.lang.String toBase64​(java.io.InputStream is)
        Encode InputStream to Base64.
        Parameters:
        is - to encode to Base64
      • fromBase64

        public static java.io.InputStream fromBase64​(java.lang.String base64)
        Decode InputStream from Base64.
        Parameters:
        base64 - Base64 encoded InputStream