Interface MapView<K,V>
-
- All Superinterfaces:
Map<K,V>,UnmodifiableMap<K,V>
public interface MapView<K,V> extends UnmodifiableMap<K,V>
-
-
Method Summary
Static Methods Modifier and Type Method Description static <K,V,VT>
MapView<K,VT>mapValues(Map<K,V> map, Function<V,VT> valueMappingFunction)static UnmodifiableMap<String,Object>stringKeys(Map<?,?> map)static Map<String,Object>stringKeysUnsafe(Map<?,?> map)-
Methods inherited from interface java.util.Map
compute, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, size
-
Methods inherited from interface com.floragunn.fluent.collections.UnmodifiableMap
clear, computeIfAbsent, entrySet, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, values
-
-