Class CollectionUtils
- java.lang.Object
-
- com.commercetools.sync.commons.utils.CollectionUtils
-
public final class CollectionUtils extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T,K>
java.util.Map<K,T>collectionToMap(java.util.Collection<T> collection, java.util.function.Function<? super T,? extends K> keyMapper)Same ascollectionToMap(Collection, Function, Function), but uses entries themselves as map values.static <T,K,V>
java.util.Map<K,V>collectionToMap(java.util.Collection<T> collection, java.util.function.Function<? super T,? extends K> keyMapper, java.util.function.Function<? super T,? extends V> valueMapper)Convert acollectionto a map usingkeyMapperandvalueMappermappers.static <T> java.util.Collection<T>emptyIfNull(java.util.Collection<T> collection)Safe wrapper around nullable collection instances: returnscollectionargument itself, if thecollectionis non-null, otherwise returns (immutable) empty collection.static <T> java.util.List<T>emptyIfNull(java.util.List<T> list)Safe wrapper around nullable list instances: returnslistargument itself, if thelistis non-null, otherwise returns (immutable) empty list.static <T> java.util.stream.Stream<T>filterCollection(java.util.Collection<T> collection, java.util.function.Predicate<T> includeCondition)Create a new collection which contains only elements which satisfyincludeConditionpredicate.
-
-
-
Method Detail
-
filterCollection
@Nonnull public static <T> java.util.stream.Stream<T> filterCollection(@Nullable java.util.Collection<T> collection, @Nonnull java.util.function.Predicate<T> includeCondition)Create a new collection which contains only elements which satisfyincludeConditionpredicate.- Type Parameters:
T- type of the collection items.- Parameters:
collection-Collectionto be filteredincludeCondition- condition which verifies whether the value should be included to the final result.- Returns:
- new filtered stream with items which satisfy
includeConditionpredicate. Ifcollectionis null or empty - empty stream is returned.
-
collectionToMap
@Nonnull public static <T,K,V> java.util.Map<K,V> collectionToMap(@Nullable java.util.Collection<T> collection, @Nonnull java.util.function.Function<? super T,? extends K> keyMapper, @Nonnull java.util.function.Function<? super T,? extends V> valueMapper)Convert acollectionto a map usingkeyMapperandvalueMappermappers. If keys are duplicated - only one value is stored, which one - undefined.- Type Parameters:
T- type of collection entriesK- type of Map keyV- type of Map value- Parameters:
collection-Collectionto convertkeyMapper- function which converts the collection entry to a keyvalueMapper- function which converts the collection entry to a value- Returns:
- new
Mapwhich consists of key-value pairs, converted from <T> entries - See Also:
collectionToMap(Collection, Function)
-
collectionToMap
@Nonnull public static <T,K> java.util.Map<K,T> collectionToMap(@Nullable java.util.Collection<T> collection, @Nonnull java.util.function.Function<? super T,? extends K> keyMapper)Same ascollectionToMap(Collection, Function, Function), but uses entries themselves as map values.- Type Parameters:
T- type of collection entriesK- type of Map key- Parameters:
collection-Collectionto convertkeyMapper- function which converts the collection entry to a key- Returns:
- new
Mapwhich consists of key-value pairs, converted from <T> entries - See Also:
collectionToMap(Collection, Function, Function)
-
emptyIfNull
@Nonnull public static <T> java.util.Collection<T> emptyIfNull(@Nullable java.util.Collection<T> collection)Safe wrapper around nullable collection instances: returnscollectionargument itself, if thecollectionis non-null, otherwise returns (immutable) empty collection.- Type Parameters:
T- collection entities type- Parameters:
collection-Collectioninstance to process- Returns:
- original
collectioninstance, if non-null; otherwise immutable empty collection instance. - See Also:
emptyIfNull(List)
-
emptyIfNull
@Nonnull public static <T> java.util.List<T> emptyIfNull(@Nullable java.util.List<T> list)Safe wrapper around nullable list instances: returnslistargument itself, if thelistis non-null, otherwise returns (immutable) empty list.- Type Parameters:
T- list entities type- Parameters:
list-Listinstance to process- Returns:
- original
listinstance, if non-null; otherwise immutable empty list instance. - See Also:
emptyIfNull(Collection)
-
-