Class CollectionTools
java.lang.Object
org.eclipse.persistence.jpa.jpql.utility.CollectionTools
This utility class provides utility methods related to collections, iterators and arrays.
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.
- Since:
- 2.4
- Version:
- 2.5
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Collection<E>,
E>
TaddAll
(T collection, E[] array) Adds to the givenCollection
the items contained in the array.static <T extends Collection<E>,
E>
TAdds to the givenCollection
the items contained in theIterable
.static <T extends Collection<E>,
E>
TAdds to the givenCollection
the items returned by the givenIterator
.static <T> T[]
Creates a new array and adds the items returned by the givenIterable
.static <T> T[]
Creates a new array and adds the items returned by the givenIterator
.static <E> List
<E> list
(E... array) Returns a list corresponding to the specified array.static <T> List
<T> Creates a newList
and adds the items returned by the givenListIterator
.
-
Method Details
-
addAll
Adds to the givenCollection
the items contained in the array.- Type Parameters:
T
- The type of the collectionE
- The type of the element- Parameters:
collection
- TheCollection
that will receive the items returned by theIterator
array
- The array to add to the givenCollection
- Returns:
- The given
Collection
- Since:
- 2.4.1
-
addAll
Adds to the givenCollection
the items contained in theIterable
.- Type Parameters:
T
- The type of the collectionE
- The type of the element- Parameters:
collection
- TheCollection
that will receive the items returned by theIterator
iterable
- TheIterable
to add to the givenCollection
- Returns:
- The given
Collection
- Since:
- 2.5
-
addAll
Adds to the givenCollection
the items returned by the givenIterator
.- Type Parameters:
T
- The type of the collectionE
- The type of the element- Parameters:
collection
- TheCollection
that will receive the items returned by theIterator
iterator
- TheIterator
that will return the items to add to theCollection
- Returns:
- The given
Collection
-
array
Creates a new array and adds the items returned by the givenIterable
.- Parameters:
componentType
- The type of the arrayiterable
- TheIterable
that will iterate over the collection of items to add into the new array in the same order they are returned- Returns:
- A new array filled with the items returned by the given iterator
- Since:
- 2.5
-
array
Creates a new array and adds the items returned by the givenIterator
.- Parameters:
componentType
- The type of the arrayiterator
- TheIterator
that will iterate over the collection of items to add into the new array in the same order they are returned- Returns:
- A new array filled with the items returned by the given iterator
-
list
Returns a list corresponding to the specified array. UnlikeArrays.asList(Object[])
, the list is modifiable and is not backed by the array. -
list
Creates a newList
and adds the items returned by the givenListIterator
.- Parameters:
iterator
- TheListIterator
to iterate over items to add into a list in the same order they are returned- Returns:
- A new
List
-