Uses of Class
me.sbasalaev.collection.Map
Packages that use Map
-
Uses of Map in me.sbasalaev.collection
Subclasses of Map in me.sbasalaev.collectionMethods in me.sbasalaev.collection that return MapModifier and TypeMethodDescriptionMap.clone()Returns shallow immutable copy of this map.static <K,V> Map <K, V> Map.empty()Map with no entries.static <K,V> Map <K, V> Map view of given java map.Deprecated.View of this map with given mapping applied to values.static <K,V> Map <K, V> Map.of(K key, V value) Map containing given entry.static <K,V> Map <K, V> Map.of(K k1, V v1, K k2, V v2) Map containing given entries.static <K,V> Map <K, V> Map.of(K k1, V v1, K k2, V v2, K k3, V v3) Map containing given entries.static <K,V> Map <K, V> Map.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) Map containing given entries.static <K,V> Map <K, V> Map.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) Map containing given entries.static <K,V> Map <K, V> Map.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) Map containing given entries.Map.Builder.toMap()Creates new immutable map with entries added to this builder.Methods in me.sbasalaev.collection with parameters of type MapModifier and TypeMethodDescriptionstatic <K,V> MutableMap <K, V> Returns new mutable map that initially contains given values.
Traversable.groupedIntoSets(java.util.function.Function)orTraversable.groupedIntoLists(java.util.function.Function)instead.