public final class CollectionTools
extends java.lang.Object
Constructor and Description |
---|
CollectionTools() |
Modifier and Type | Method and Description |
---|---|
static <T> java.util.List<T> |
asImmutable(java.util.List<T> l)
Returns an immutable copy of the provided list.
|
static int |
countNonNullValues(java.util.Collection<?> c)
Returns the number of non-null values in the passed Collection or zero if null was passed.
|
static <T> java.util.Collection<T> |
filterNull(java.util.Collection<T> c)
Returns a new collection (ArrayList), containing only the non-null values of the passed Collection
or an empty Collection if null was passed.
|
static <T> T |
firstElement(java.lang.Iterable<T> iterable)
Returns the first element (as determined by the default iterator) of the passed
iterable
or null if it is null or empty. |
static <T> T |
firstElement(java.lang.Iterable<T> iterable,
boolean returnNullIfNullOrEmpty)
Returns the first element (as determined by the default iterator) of the passed
iterable
or null if it is null or empty and returnNullIfNullOrEmpty was passed as true . |
static <T> T |
getOnlyElement(java.lang.Iterable<T> iterable)
Returns the single element contained in
iterable . |
static <T> T |
getOnlyElement(java.lang.Iterable<T> iterable,
boolean returnNullIfNullOrEmpty)
Returns the single element contained in
iterable . |
static <T> T |
getOnlyElement(java.lang.Iterable<T> iterable,
boolean returnNullIfNullOrEmpty,
java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
Returns the single element contained in
iterable . |
static <T> T |
getOnlyElementInternal(java.lang.Iterable<T> iterable,
boolean returnNullIfNullOrEmpty,
java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
Internal method for getting the single element contained in
iterable . |
static void |
removeNullValues(java.util.Collection<?> c)
Modifies the passed Collection and removes all null values from it.
|
static <R> java.util.stream.Collector<R,?,R> |
toOnlyElement()
Returns a
Collector that produces the only element. |
static <R> java.util.stream.Collector<R,?,R> |
toOnlyElement(boolean returnNullIfNullOrEmpty)
Returns a
Collector that produces the only element. |
static <R> java.util.stream.Collector<R,?,R> |
toOnlyElement(boolean returnNullIfNullOrEmpty,
java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
Returns a
Collector that produces the only element. |
static <T> java.util.Set<T> |
toUnmodifiableSet(T[] data)
Returns a new immutable Set containing the elements from the given array.
|
public static final <T> T firstElement(java.lang.Iterable<T> iterable)
iterable
or null if it is null or empty.iterable
- the Iterable
to inspectiterable
or null if it is null or emptypublic static final <T> T firstElement(java.lang.Iterable<T> iterable, boolean returnNullIfNullOrEmpty)
iterable
or null if it is null or empty and returnNullIfNullOrEmpty
was passed as true
.iterable
- the Iterable
to inspectreturnNullIfNullOrEmpty
- a boolean specifying if we should produce a null value for
a passed null or empty Iterable, otherwise an IllegalArgumentException will be throwniterable
or null if it is null or empty and returnNullIfNullOrEmpty
was passed as true
java.util.NoSuchElementException
- if the iterable
is null or empty and returnNullIfNullOrEmpty
was passed as false
public static final <R> java.util.stream.Collector<R,?,R> toOnlyElement()
Collector
that produces the only element. Produces a null value for empty or null Collections.
Usage example with streams: l.stream().collect(CollectionTools.toOnlyElement())
Collector
that produces the only element or a null value for empty or null Collections.public static final <R> java.util.stream.Collector<R,?,R> toOnlyElement(boolean returnNullIfNullOrEmpty)
Collector
that produces the only element.
Usage example with streams: l.stream().collect(CollectionTools.toOnlyElement())
returnNullIfNullOrEmpty
- A boolean specifying if we should produce a null value for
empty or null Collections; otherwise, a NoSuchElementException will be thrown.Collector
that produces the only element.public static final <R> java.util.stream.Collector<R,?,R> toOnlyElement(boolean returnNullIfNullOrEmpty, java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
Collector
that produces the only element.
Usage example with streams: l.stream().collect(CollectionTools.toOnlyElement())
returnNullIfNullOrEmpty
- A boolean specifying if we should produce a null value for
empty or null Collections; otherwise, a NoSuchElementException will be thrown.exceptionSupplier
- A Supplier that returns a RuntimeException to throw instead of the
default IllegalArgumentException.Collector
that produces the only element.java.util.NoSuchElementException
- If the Collection is empty and returnNullIfNullOrEmpty
was passed as false
.java.lang.IllegalArgumentException
- If the Collection contains multiple elements. The state of the
underlying iterator is unspecified.java.lang.RuntimeException
- If the Collection contains multiple elements and an
exceptionSupplier
was passed. The state of the underlying
iterator is unspecified.public static final <T> T getOnlyElement(java.lang.Iterable<T> iterable)
iterable
.iterable
- The Iterable
to inspect.iterable
.java.util.NoSuchElementException
- If the iterable
is empty.java.lang.IllegalArgumentException
- If the iterable contains multiple elements. The state of the iterator is unspecified.public static final <T> T getOnlyElement(java.lang.Iterable<T> iterable, boolean returnNullIfNullOrEmpty)
iterable
.iterable
- The Iterable
to inspect.returnNullIfNullOrEmpty
- A boolean specifying if we should return null in case the
passed Iterable
is empty or null; otherwise, a NoSuchElementException will be thrown.iterable
.java.util.NoSuchElementException
- If the iterable
is empty and returnNullIfNullOrEmpty
was passed as false
.java.lang.IllegalArgumentException
- If the iterable contains multiple elements. The state of the iterator is unspecified.public static final <T> T getOnlyElement(java.lang.Iterable<T> iterable, boolean returnNullIfNullOrEmpty, java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
iterable
.iterable
- The Iterable
to inspect.returnNullIfNullOrEmpty
- A boolean specifying if we should return null in case the
passed Iterable
is empty or null; otherwise, a NoSuchElementException will be thrown.exceptionSupplier
- A Supplier that returns a RuntimeException to throw instead of the
default IllegalArgumentException.iterable
.java.util.NoSuchElementException
- If the iterable
is empty and returnNullIfNullOrEmpty
was passed as false
.java.lang.IllegalArgumentException
- If the iterable contains multiple elements. The state of the
iterator is unspecified.java.lang.RuntimeException
- If the iterable
contains multiple elements and an
exceptionSupplier
was passed. The state of the iterator is unspecified.public static final <T> T getOnlyElementInternal(java.lang.Iterable<T> iterable, boolean returnNullIfNullOrEmpty, java.util.function.Supplier<? extends java.lang.RuntimeException> exceptionSupplier)
iterable
.iterable
- The Iterable
to inspect.returnNullIfNullOrEmpty
- A boolean specifying if we should return null in case the
passed Iterable
is empty or null; otherwise, a NoSuchElementException will be thrown.exceptionSupplier
- A Supplier that returns a RuntimeException to throw instead of the
default IllegalArgumentException.iterable
.java.util.NoSuchElementException
- If the iterable
is empty and returnNullIfNullOrEmpty
was passed as false
.java.lang.IllegalArgumentException
- If the iterable contains multiple elements. The state of the
iterator is unspecified.java.lang.RuntimeException
- If the iterable
contains multiple elements and an
exceptionSupplier
was passed. The state of the iterator is unspecified.public static final <T> java.util.List<T> asImmutable(java.util.List<T> l)
T
- The type of elements in the list.l
- The list to make immutable.public static final void removeNullValues(java.util.Collection<?> c)
c
- The Collection to remove null values from.public static final int countNonNullValues(java.util.Collection<?> c)
c
- The Collection to count non-null values from.public static final <T> java.util.Collection<T> filterNull(java.util.Collection<T> c)
T
- The type of elements in the Collection.c
- The Collection to filter non-null values from.public static <T> java.util.Set<T> toUnmodifiableSet(T[] data)
For Java 9 and later, consider using `Set.of()` if the order of elements is not important. See Immutable Set Static Factory Methods for more details.
T
- The type of elements in the array.data
- The array to convert, nullable.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.