Class SimpleByteSource

    • Constructor Detail

      • SimpleByteSource

        public SimpleByteSource​(char[] chars)
        Creates an instance by converting the characters to a byte array (assumes UTF-8 encoding).
        Parameters:
        chars - the source characters to use to create the underlying byte array.
        Since:
        1.1
      • SimpleByteSource

        public SimpleByteSource​(String string)
        Creates an instance by converting the String to a byte array (assumes UTF-8 encoding).
        Parameters:
        string - the source string to convert to a byte array (assumes UTF-8 encoding).
        Since:
        1.1
      • SimpleByteSource

        public SimpleByteSource​(ByteSource source)
        Creates an instance using the sources bytes directly - it does not create a copy of the argument's byte array.
        Parameters:
        source - the source to use to populate the underlying byte array.
        Since:
        1.1
      • SimpleByteSource

        public SimpleByteSource​(File file)
        Creates an instance by converting the file to a byte array.
        Parameters:
        file - the file from which to acquire bytes.
        Since:
        1.1
      • SimpleByteSource

        public SimpleByteSource​(InputStream stream)
        Creates an instance by converting the stream to a byte array.
        Parameters:
        stream - the stream from which to acquire bytes.
        Since:
        1.1
    • Method Detail

      • isCompatible

        public static boolean isCompatible​(Object o)
        Returns true if the specified object is a recognized data type that can be easily converted to bytes by instances of this class, false otherwise.

        This implementation returns true IFF the specified object is an instance of one of the following types:

        Parameters:
        o - the object to test to see if it can be easily converted to bytes by instances of this class.
        Returns:
        true if the specified object can be easily converted to bytes by instances of this class, false otherwise.
        Since:
        1.2
      • getBytes

        public byte[] getBytes()
        Description copied from interface: ByteSource
        Returns the wrapped byte array.
        Specified by:
        getBytes in interface ByteSource
        Returns:
        the wrapped byte array.
      • isEmpty

        public boolean isEmpty()
        Description copied from interface: ByteSource
        Returns true if the underlying wrapped byte array is null or empty (zero length), false otherwise.
        Specified by:
        isEmpty in interface ByteSource
        Returns:
        true if the underlying wrapped byte array is null or empty (zero length), false otherwise.
      • toHex

        public String toHex()
        Description copied from interface: ByteSource
        Returns the Hex-formatted String representation of the underlying wrapped byte array.
        Specified by:
        toHex in interface ByteSource
        Returns:
        the Hex-formatted String representation of the underlying wrapped byte array.
      • toBase64

        public String toBase64()
        Description copied from interface: ByteSource
        Returns the Base 64-formatted String representation of the underlying wrapped byte array.
        Specified by:
        toBase64 in interface ByteSource
        Returns:
        the Base 64-formatted String representation of the underlying wrapped byte array.