Package org.yaml.snakeyaml.util
Class ArrayUtils
java.lang.Object
org.yaml.snakeyaml.util.ArrayUtils
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class
private static class
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <E> List<E>
toUnmodifiableCompositeList
(E[] array1, E[] array2) Returns an unmodifiableList
containing the second array appended to the first one.static <E> List<E>
toUnmodifiableList
(E[] elements) Returns an unmodifiableList
backed by the given array.
-
Constructor Details
-
ArrayUtils
private ArrayUtils()
-
-
Method Details
-
toUnmodifiableList
Returns an unmodifiableList
backed by the given array. The method doesn't copy the array, so the changes to the array will affect theList
as well.- Type Parameters:
E
- class of the elements in the array- Parameters:
elements
- - array to convert- Returns:
List
backed by the given array
-
toUnmodifiableCompositeList
Returns an unmodifiableList
containing the second array appended to the first one. The method doesn't copy the arrays, so the changes to the arrays will affect theList
as well.- Type Parameters:
E
- class of the elements in the array- Parameters:
array1
- - the array to extendarray2
- - the array to add to the first- Returns:
List
backed by the given arrays
-