Java Byte Array Create bytes(final byte... elements)

Here you can find the source of bytes(final byte... elements)

Description

bytes

License

Open Source License

Declaration

public static byte[] bytes(final byte... elements) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static byte[] bytes(final byte... elements) {
        return elements;
    }/*from   w  w w  .  j  a  v  a  2s  .  c o m*/
}

Related

  1. byteArrayFromChar(char i)
  2. byteArrayFromHexString(String in)
  3. byteArrayFromInt(final int number)
  4. byteArrayFromInteger(int integer)
  5. byteArrayFromInteger(int integer)
  6. bytes(final int... ints)
  7. bytes(int... bytes)
  8. bytes(int... ints)
  9. newByteArray(byte[] data, int finalSize)