Uses of Class
org.apache.juneau.commons.collections.Maps
Packages that use Maps
Package
Description
Enhanced collection utilities that extend the standard Java Collections Framework with fluent APIs,
specialized collection types, and caching capabilities.
Common internal utilities.
Internal Utilities
-
Uses of Maps in org.apache.juneau.commons.collections
Methods in org.apache.juneau.commons.collections that return MapsModifier and TypeMethodDescriptionAdds a single entry to this map.Appends the contents of the specified map into this map.Adds arbitrary values to this map.Adds a list of key/value pairs to this map.Maps.concurrent()When specified,build()will return a thread-safe map.Maps.concurrent(boolean value) Sets whetherbuild()should return a thread-safe map.static <K,V> Maps<K, V> Maps.create()Static creator without explicit type parameters.static <K,V> Maps<K, V> Static creator.Maps.filtered()Applies a default filter that excludes common "empty" or "unset" values from being added to the map.Maps.filtered(BiPredicate<K, V> filter) Applies a filter predicate to entries when building the map.Sets both key and value conversion functions.Maps.keyFunction(Function<Object, K> keyFunction) Sets the key conversion function for converting keys inaddAny(Object...).Maps.ordered()When specified,build()will use aLinkedHashMapto preserve insertion order.Maps.ordered(boolean value) Sets whetherbuild()should use aLinkedHashMapto preserve insertion order.Maps.sorted()Converts the set into aSortedMap.Maps.sorted(Comparator<K> comparator) Converts the set into aSortedMapusing the specified comparator.Maps.sparse()When specified, thebuild()method will returnnull if the map is empty.Maps.unmodifiable()When specified,build()will return an unmodifiable map.Maps.valueFunction(Function<Object, V> valueFunction) Sets the value conversion function for converting values inaddAny(Object...). -
Uses of Maps in org.apache.juneau.commons.utils
Methods in org.apache.juneau.commons.utils that return Maps -
Uses of Maps in org.apache.juneau.internal
Methods in org.apache.juneau.internal that return Maps