public final class MapTools
extends java.lang.Object
Constructor and Description |
---|
MapTools() |
Modifier and Type | Method and Description |
---|---|
static <K,V,C extends java.util.Collection<V>> |
addToValueCollection(java.util.Map<K,C> map,
K key,
V value,
java.util.function.Supplier<C> colletionCreator)
Adds the given value into the collection stored in the map for the given key.
|
static <K,V> void |
addToValueList(java.util.Map<K,java.util.List<V>> map,
K key,
V value) |
static <K,V> void |
addToValueSet(java.util.Map<K,java.util.Set<V>> map,
K key,
V value) |
static <K,V> java.util.Map<K,V> |
asImmutable(java.util.Map<K,V> map)
Returns an unmodifiable version of the passed Map, or the empty Map for a passed null or empty map.
|
static <K,V> java.util.List<java.util.Map<K,V>> |
collateMap(java.util.Map<K,V> map,
int size)
Breaks a given map into a list of smaller maps, each containing at most the specified number of entries.
|
static <K,V> java.util.Map<K,V> |
elvis(java.util.Map<K,V>[] maps,
boolean fallBackToEmptyMap)
"elvis operator" for
Map s |
static <K,V> java.util.Map<K,V> |
elvis(java.util.Map<K,V>[] maps,
java.util.function.Supplier<? extends java.util.Map<K,V>> emptyMapCreator)
"elvis operator" for
Map s |
static <K,V> java.util.Map<K,V> |
fillMap(java.util.Map<K,V> map,
K[] keyArray,
V[] valueArray)
Fills a passed map using two arrays.
|
static <K,V> java.util.Map<K,V> |
fillMap(java.util.Map<K,V> map,
java.lang.Object[] array)
Fills a passed map using an array representing keys and values in various possible styles.
|
static <K,V> java.util.Map<K,V> |
fillMap(java.lang.Object[] array,
java.util.Map<K,V> map)
Fills a passed map using an array representing keys and values in various possible styles.
|
static <R> R |
find(java.lang.Class<R> needle,
java.util.Map<?,?> haystack)
Returns the first value in the passed Map that is of the passed Class.
|
static <K,V> java.util.Map<K,V> |
findAll(java.lang.Class<?> needle,
java.util.Map<K,V> haystack)
Returns a map with entries of the passed Map, where the value is of the passed Class.
|
static <K,V> V |
firstValue(java.util.Map<K,V> map)
Returns the first Map.Entry's (as determined by the default iterator) value or null if
the map is empty.
|
static <K,V> java.util.Map.Entry<K,V> |
getOnlyEntry(java.util.Map<K,V> map)
Returns the single key contained in
Map . |
static <K,V> K |
getOnlyKey(java.util.Map<K,V> map)
Returns the single key contained in
Map . |
static <K,V> V |
getOnlyValue(java.util.Map<K,V> map)
Returns the single value contained in
Map . |
static boolean |
isEmpty(java.util.Map<?,?> map) |
static boolean |
isEmpty(java.util.Map<?,?> map,
boolean lazyEvaluationIfPossible)
Returns true if the passed Map is null or empty, using the lazy variant if it is a LazyMapI,
so that no unlazy will be triggered by this method.
|
static boolean |
isOneOfClass(java.lang.Class<?> needle,
java.util.Map<?,?> haystack)
Returns true if one of the values in the passed Map is of the passed Class.
|
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Collection<java.util.Map<K,V>> ms,
boolean unmodifiable)
Null-safe method to merge all Maps in the given collection into a new Map.
|
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V>[] ms) |
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V>[] ms,
boolean unmodifiable)
Null-safe method to merge all Maps in the passed array into a new Map.
|
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V> m1,
java.util.Map<K,V> m2) |
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V> m1,
java.util.Map<K,V> m2,
boolean unmodifiable) |
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V> m1,
java.util.Map<K,V> m2,
java.util.Map<K,V> m3) |
static <K extends java.lang.Comparable<? super K>,V> |
mergeMaps(java.util.Map<K,V> m1,
java.util.Map<K,V> m2,
java.util.Map<K,V> m3,
boolean unmodifiable) |
static int |
size(java.util.Map<?,?> map) |
static int |
size(java.util.Map<?,?> map,
boolean lazyEvaluationIfPossible)
Returns the size of the passed Map, using the lazy variant if it is a LazyMapI, or zero if null
is passed.
|
static <K,V,R> java.util.HashMap<R,V> |
transformMap(java.util.function.Function<V,R> propertyFunc,
java.util.Map<K,V> inputMap)
Returns a map for the passed map, but with its keys transformed via the passed property.
|
static <K,V> java.util.HashMap<?,V> |
transformMap(java.lang.String property,
java.util.Map<K,V> inputMap)
Deprecated.
since the "property" String parameter is very error-prone, prefer to use
transformMap(Function, Map) instead |
public static final <K,V,R> java.util.HashMap<R,V> transformMap(java.util.function.Function<V,R> propertyFunc, java.util.Map<K,V> inputMap)
propertyFunc
- the property function by which to transform each object into a new key for the new.
Needs to be passed as a static reference, since we will apply it to all value instances in the map.inputMap
- the map to transformHashMap
with the transformed map entriesjava.lang.IllegalArgumentException
- if a parameter is nulljava.lang.RuntimeException
- if there was no corresponding get-method found or access
or invocation of it failed@Deprecated public static final <K,V> java.util.HashMap<?,V> transformMap(java.lang.String property, java.util.Map<K,V> inputMap)
transformMap(Function, Map)
insteadproperty
- the property by which to transform each key-entry of the passed
map (by calling the corresponding get-method on the value in the map)inputMap
- the map to transformHashMap
with the transformed map entriesjava.lang.IllegalArgumentException
- if a parameter is nulljava.lang.RuntimeException
- if there was no corresponding get-method found or access
or invocation of it failedpublic static final <K,V> java.util.Map<K,V> fillMap(java.util.Map<K,V> map, java.lang.Object[] array)
array
- the keys and values for the to be created map,
either in order key, value, key, value, ...
or as an array of Map.Entry or KeyValue objects
or as an array of object arrays with 2 elements: key and value.map
- the map to be filledMap
with the keys and values from the passed arrayjava.lang.NullPointerException
- if map is nulljava.lang.IllegalArgumentException
- if sub-array or entry matching is used and an entry is invalidjava.lang.ClassCastException
- if the array contents are mixedpublic static final <K,V> java.util.Map<K,V> fillMap(java.lang.Object[] array, java.util.Map<K,V> map)
map
- the map to be filledarray
- the keys and values for the to be created map,
either in order key, value, key, value, ...
or as an array of Map.Entry or KeyValue objects
or as an array of object arrays with 2 elements: key and value.Map
with the keys and values from the passed arrayjava.lang.NullPointerException
- if map is nulljava.lang.IllegalArgumentException
- if sub-array or entry matching is used and an entry is invalidjava.lang.ClassCastException
- if the array contents are mixedpublic static final <K,V> java.util.Map<K,V> fillMap(java.util.Map<K,V> map, K[] keyArray, V[] valueArray)
map
- the map to be filledkeyArray
- the keys for the to be created mapvalueArray
- the values for the to be created mapMap
with the keys and values from the passed arraysjava.lang.IllegalArgumentException
- if map is null
or if sub-array or entry matching is used and an entry is invalid
or if the passed arrays do not have the same sizejava.lang.ClassCastException
- if the array contents are mixedpublic static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V> m1, java.util.Map<K,V> m2, java.util.Map<K,V> m3)
public static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V> m1, java.util.Map<K,V> m2, java.util.Map<K,V> m3, boolean unmodifiable)
public static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V> m1, java.util.Map<K,V> m2)
public static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V> m1, java.util.Map<K,V> m2, boolean unmodifiable)
public static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V>[] ms)
public static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Map<K,V>[] ms, boolean unmodifiable)
ms
- an array of Map
s to mergeunmodifiable
- if the returned Map shall be unmodifiablepublic static final <K extends java.lang.Comparable<? super K>,V> java.util.Map<K,V> mergeMaps(java.util.Collection<java.util.Map<K,V>> ms, boolean unmodifiable)
ms
- a collection of Map
s to mergeunmodifiable
- if the returned Map shall be unmodifiablepublic static final <K,V> java.util.List<java.util.Map<K,V>> collateMap(java.util.Map<K,V> map, int size)
K
- the type of keys in the mapV
- the type of values in the mapmap
- the map to be collatedsize
- the maximum number of entries in each resulting submapjava.lang.IllegalArgumentException
- if the specified size is less than or equal to 0public static final <K,V> java.util.Map<K,V> elvis(java.util.Map<K,V>[] maps, boolean fallBackToEmptyMap)
Map
sMap
s which is not null and not empty.
If all maps are null or empty, null is returned or if fallBackToEmptyMap
is passed as true an empty unmodifiable map is returned.public static final <K,V> java.util.Map<K,V> elvis(java.util.Map<K,V>[] maps, java.util.function.Supplier<? extends java.util.Map<K,V>> emptyMapCreator)
Map
sMap
s which is not null and not empty.
If all maps are null or empty, null is returned or if a fallBackSupplier
is passed, the resulting Map of a get-call on that supplier.public static final boolean isOneOfClass(java.lang.Class<?> needle, java.util.Map<?,?> haystack)
needle
- the Class to look forhaystack
- the Map to check the values ofpublic static final <R> R find(java.lang.Class<R> needle, java.util.Map<?,?> haystack)
needle
- the Class to look forhaystack
- the Map to check the values ofpublic static final <K,V> java.util.Map<K,V> findAll(java.lang.Class<?> needle, java.util.Map<K,V> haystack)
needle
- the Class to look forhaystack
- the Map to check the values ofpublic static final <K,V> V firstValue(java.util.Map<K,V> map)
map
- the Map
to get the first value fromMap
or null if it is null or emptypublic static final <K,V> java.util.Map.Entry<K,V> getOnlyEntry(java.util.Map<K,V> map)
Map
.map
- the Map to inspectMap
java.util.NoSuchElementException
- if the Map is null or emptypublic static final <K,V> K getOnlyKey(java.util.Map<K,V> map)
Map
.map
- the Map to inspectMap
java.util.NoSuchElementException
- if the Map is null or emptypublic static final <K,V> V getOnlyValue(java.util.Map<K,V> map)
Map
.map
- the Map to inspectMap
java.util.NoSuchElementException
- if the Map is null or emptypublic static final boolean isEmpty(java.util.Map<?,?> map)
public static final boolean isEmpty(java.util.Map<?,?> map, boolean lazyEvaluationIfPossible)
public static final int size(java.util.Map<?,?> map)
public static final int size(java.util.Map<?,?> map, boolean lazyEvaluationIfPossible)
public static final <K,V> java.util.Map<K,V> asImmutable(java.util.Map<K,V> map)
public static final <K,V> void addToValueSet(java.util.Map<K,java.util.Set<V>> map, K key, V value)
public static final <K,V> void addToValueList(java.util.Map<K,java.util.List<V>> map, K key, V value)
public static final <K,V,C extends java.util.Collection<V>> void addToValueCollection(java.util.Map<K,C> map, K key, V value, java.util.function.Supplier<C> colletionCreator)
K
- map key typeV
- type of the values stored within each set of map valuesmap
- the map to manipulatekey
- the key for which the value should be addedvalue
- the value that should be addedcolletionCreator
- constructor ref with which new collections should be createdCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.