public class ArrayUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static <E> List<E> |
toUnmodifiableCompositeList(E[] array1,
E[] array2)
Returns an unmodifiable
List containing the second array appended to the first one. |
static <E> List<E> |
toUnmodifiableList(E[] elements)
Returns an unmodifiable
List backed by the given array. |
public static <E> List<E> toUnmodifiableList(E[] elements)
List backed by the given array. The method doesn't copy the array, so the changes
to the array will affect the List as well.E - class of the elements in the arrayelements - - array to convertList backed by the given arraypublic static <E> List<E> toUnmodifiableCompositeList(E[] array1, E[] array2)
List containing the second array appended to the first one. The method doesn't copy
the arrays, so the changes to the arrays will affect the List as well.E - class of the elements in the arrayarray1 - - the array to extendarray2 - - the array to add to the firstList backed by the given arraysCopyright © 2008–2021. All rights reserved.