@Stability.Internal public class CbCollections extends Object
Modifier and Type | Method and Description |
---|---|
static <T> List<T> |
copyToUnmodifiableList(Collection<T> c)
Returns a new unmodifiable list with the same contents as the given collection.
|
static <T> Set<T> |
copyToUnmodifiableSet(Collection<T> c)
Returns a new unmodifiable set with the same contents as the given collection.
|
static <T> List<T> |
filter(Iterable<T> input,
Predicate<? super T> predicate)
Convenience method equivalent to:
|
static <T> List<T> |
filter(T[] input,
Predicate<? super T> predicate)
Convenience method equivalent to:
|
static boolean |
isNullOrEmpty(Collection<?> c) |
static boolean |
isNullOrEmpty(Map<?,?> m) |
static boolean |
isNullOrEmpty(String s) |
static <E> List<E> |
listCopyOf(Collection<? extends E> original)
Backport of
List.copyOf . |
static <E> List<E> |
listCopyOf(Iterable<? extends E> original)
Returns an unmodifiable list containing all elements of the given iterable.
|
static <T> List<T> |
listOf(T... items)
Returns an unmodifiable list containing the given items.
|
static <K,V> Map<K,V> |
mapCopyOf(Map<? extends K,? extends V> original)
Backport of
Map.copyOf . |
static <K,V> Map<K,V> |
mapOf()
Returns an unmodifiable empty map.
|
static <K,V> Map<K,V> |
mapOf(K key1,
V value1)
Returns an unmodifiable map containing the given key/value pairs.
|
static <K,V> Map<K,V> |
mapOf(K key1,
V value1,
K key2,
V value2)
Returns an unmodifiable map containing the given key/value pairs.
|
static <K,V> Map<K,V> |
mapOf(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
Returns an unmodifiable map containing the given key/value pairs.
|
static <K,V> Map<K,V> |
mapOf(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
Returns an unmodifiable map containing the given key/value pairs.
|
static <K,V> Map<K,V> |
mapOf(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4,
K key5,
V value5)
Returns an unmodifiable map containing the given key/value pairs.
|
static <E> Set<E> |
setCopyOf(Collection<? extends E> original)
Backport of
Set.copyOf . |
static <T> Set<T> |
setOf(T... items)
Returns an unmodifiable set containing the given items.
|
static <T1,T2> List<T2> |
transform(Iterable<T1> input,
Function<? super T1,? extends T2> transformer)
Convenience method equivalent to:
|
static <T1,T2> List<T2> |
transform(Iterator<T1> input,
Function<? super T1,? extends T2> transformer)
Convenience method equivalent to:
|
static <T1,T2> List<T2> |
transform(T1[] input,
Function<? super T1,? extends T2> transformer)
Convenience method equivalent to:
|
static <K,V1,V2> Map<K,V2> |
transformValues(Map<K,V1> map,
BiFunction<K,V1,V2> transformer) |
static <K,V1,V2> Map<K,V2> |
transformValues(Map<K,V1> map,
Function<V1,V2> transformer) |
public static <E> List<E> listCopyOf(Collection<? extends E> original)
List.copyOf
.
Returns an unmodifiable list containing all elements of the given collection. Subsequent changes to the original collection are not reflected in the returned list.
NullPointerException
- if original is null or contains any nullspublic static <E> Set<E> setCopyOf(Collection<? extends E> original)
Set.copyOf
.
Returns an unmodifiable set containing all elements of the given collection. If the original contains duplicate items, an arbitrary element is preserved. Subsequent changes to the original collection are not reflected in the returned set.
NullPointerException
- if original is null or contains any nullspublic static <K,V> Map<K,V> mapCopyOf(Map<? extends K,? extends V> original)
Map.copyOf
.
Returns an unmodifiable map containing all entries of the given map. Subsequent changes to the original map are not reflected in the returned map.
NullPointerException
- if original is null or contains any null keys or values.public static <T> List<T> copyToUnmodifiableList(@Nullable Collection<T> c)
c
- may be null
, in which case an empty list is returned.public static <T> Set<T> copyToUnmodifiableSet(@Nullable Collection<T> c)
c
- may be null
, in which case an empty set is returned.public static boolean isNullOrEmpty(@Nullable Collection<?> c)
@SafeVarargs public static <T> Set<T> setOf(T... items)
NullPointerException
- if any item is nullInvalidArgumentException
- if there are duplicate items@SafeVarargs public static <T> List<T> listOf(T... items)
NullPointerException
- if any item is nullpublic static <K,V> Map<K,V> mapOf()
public static <K,V> Map<K,V> mapOf(K key1, V value1)
NullPointerException
- if any key or value is nullInvalidArgumentException
- if there are duplicate keyspublic static <K,V> Map<K,V> mapOf(K key1, V value1, K key2, V value2)
NullPointerException
- if any key or value is nullInvalidArgumentException
- if there are duplicate keyspublic static <K,V> Map<K,V> mapOf(K key1, V value1, K key2, V value2, K key3, V value3)
NullPointerException
- if any key or value is nullInvalidArgumentException
- if there are duplicate keyspublic static <K,V> Map<K,V> mapOf(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
NullPointerException
- if any key or value is nullInvalidArgumentException
- if there are duplicate keyspublic static <K,V> Map<K,V> mapOf(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4, K key5, V value5)
NullPointerException
- if any key or value is nullInvalidArgumentException
- if there are duplicate keyspublic static <T1,T2> List<T2> transform(Iterable<T1> input, Function<? super T1,? extends T2> transformer)
input.stream().map(transformer).collect(toList())
public static <T1,T2> List<T2> transform(Iterator<T1> input, Function<? super T1,? extends T2> transformer)
input.stream().map(transformer).collect(toList())
public static <T1,T2> List<T2> transform(T1[] input, Function<? super T1,? extends T2> transformer)
Arrays.stream(input).map(transformer).collect(toList())
public static <T> List<T> filter(Iterable<T> input, Predicate<? super T> predicate)
input.stream().filter(predicate).collect(toList())
public static <T> List<T> filter(T[] input, Predicate<? super T> predicate)
Arrays.stream(input).filter(predicate).collect(toList())
public static <K,V1,V2> Map<K,V2> transformValues(Map<K,V1> map, Function<V1,V2> transformer)
public static <K,V1,V2> Map<K,V2> transformValues(Map<K,V1> map, BiFunction<K,V1,V2> transformer)
public static <E> List<E> listCopyOf(Iterable<? extends E> original)
NullPointerException
- if original is null or contains any nullsCopyright © 2024 Couchbase, Inc.. All rights reserved.