Class ByteUtils


  • public class ByteUtils
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      ByteUtils()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] concat​(byte[] arrayOne, byte[] arrayTwo)
      Concatenate two byte arrays.
      • Methods inherited from class java.lang.Object

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

      • concat

        public static byte[] concat​(byte[] arrayOne,
                                    byte[] arrayTwo)
        Concatenate two byte arrays.
        Parameters:
        arrayOne - the first input array.
        arrayTwo - the second input array
        Returns:
        the concatenation of the first and second input array.