Class ArrayUtils

java.lang.Object
com.nimbusds.jose.util.ArrayUtils

public class ArrayUtils extends Object
Array utilities.
  • Method Details

    • concat

      public static <T> T[] concat(T[] first, T[]... rest)
      Concatenates the specified arrays.
      Type Parameters:
      T - The array type.
      Parameters:
      first - The first array. Must not be null.
      rest - The remaining arrays.
      Returns:
      The resulting array.