public final class CollectionTools extends Object
Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
Modifier and Type | Method and Description |
---|---|
static <T extends Collection<E>,E> |
addAll(T collection,
E[] array)
Adds to the given
Collection the items contained in the array. |
static <T extends Collection<E>,E> |
addAll(T collection,
Iterable<? extends E> iterable)
Adds to the given
Collection the items contained in the Iterable . |
static <T extends Collection<E>,E> |
addAll(T collection,
Iterator<? extends E> iterator)
Adds to the given
Collection the items returned by the given Iterator . |
static <T> T[] |
array(Class<T> componentType,
Iterable<? extends T> iterable)
Creates a new array and adds the items returned by the given
Iterable . |
static <T> T[] |
array(Class<T> componentType,
Iterator<? extends T> iterator)
Creates a new array and adds the items returned by the given
Iterator . |
static <E> List<E> |
list(E... array)
Returns a list corresponding to the specified array.
|
static <T> List<T> |
list(Iterator<? extends T> iterator)
Creates a new
List and adds the items returned by the given ListIterator . |
public static <T extends Collection<E>,E> T addAll(T collection, E[] array)
Collection
the items contained in the array.T
- The type of the collectionE
- The type of the elementcollection
- The Collection
that will receive the items returned by the Iterator
array
- The array to add to the given Collection
Collection
public static <T extends Collection<E>,E> T addAll(T collection, Iterable<? extends E> iterable)
Collection
the items contained in the Iterable
.T
- The type of the collectionE
- The type of the elementcollection
- The Collection
that will receive the items returned by the Iterator
iterable
- The Iterable
to add to the given Collection
Collection
public static <T extends Collection<E>,E> T addAll(T collection, Iterator<? extends E> iterator)
Collection
the items returned by the given Iterator
.T
- The type of the collectionE
- The type of the elementcollection
- The Collection
that will receive the items returned by the Iterator
iterator
- The Iterator
that will return the items to add to the Collection
Collection
public static <T> T[] array(Class<T> componentType, Iterable<? extends T> iterable)
Iterable
.componentType
- The type of the arrayiterable
- The Iterable
that will iterate over the collection of items to add
into the new array in the same order they are returnedpublic static <T> T[] array(Class<T> componentType, Iterator<? extends T> iterator)
Iterator
.componentType
- The type of the arrayiterator
- The Iterator
that will iterate over the collection of items to add
into the new array in the same order they are returnedpublic static <E> List<E> list(E... array)
Arrays.asList(Object[])
,
the list is modifiable and is not backed by the array.public static <T> List<T> list(Iterator<? extends T> iterator)
List
and adds the items returned by the given ListIterator
.iterator
- The ListIterator
to iterate over items to add
into a list in the same order they are returnedList
Copyright © 2007–2020 Eclipse.org - EclipseLink Project. All rights reserved.