MapTransformExtension<K, V> extension
Convenience methods for selecting and filtering map entries.
- on
-
- Map<
K, V>
- Map<
Methods
-
omit(
Iterable< K> keys) → Map<K, V> -
Available on Map<
Returns a copy excludingK, V> , provided by the MapTransformExtension extensionkeys. -
pick(
Iterable< K> keys) → Map<K, V> -
Available on Map<
Returns a copy containing onlyK, V> , provided by the MapTransformExtension extensionkeys. -
whereEntries(
bool test(K key, V value)) → Map< K, V> -
Available on Map<
Returns a copy with entries that satisfyK, V> , provided by the MapTransformExtension extensiontest. -
withoutNullValues(
) → Map< K, V> -
Available on Map<
Returns a copy without null values.K, V> , provided by the MapTransformExtension extension