Uses of Class
cloud.opencode.base.collections.immutable.ImmutableSortedMap
Packages that use ImmutableSortedMap
-
Uses of ImmutableSortedMap in cloud.opencode.base.collections.immutable
Methods in cloud.opencode.base.collections.immutable that return ImmutableSortedMapModifier and TypeMethodDescriptionImmutableSortedMap.Builder.build()Build the immutable sorted map.static <K extends Comparable<? super K>, V>
ImmutableSortedMap<K, V> Copy from a map.static <K,V> ImmutableSortedMap <K, V> ImmutableSortedMap.copyOf(Map<? extends K, ? extends V> map, Comparator<? super K> comparator) Copy from a map with comparator.static <K extends Comparable<? super K>, V>
ImmutableSortedMap<K, V> ImmutableSortedMap.of()Return an empty immutable sorted map.static <K extends Comparable<? super K>, V>
ImmutableSortedMap<K, V> ImmutableSortedMap.of(K k1, V v1) Return an immutable sorted map with one entry.static <K extends Comparable<? super K>, V>
ImmutableSortedMap<K, V> ImmutableSortedMap.of(K k1, V v1, K k2, V v2) Return an immutable sorted map with two entries.static <K extends Comparable<? super K>, V>
ImmutableSortedMap<K, V> ImmutableSortedMap.of(K k1, V v1, K k2, V v2, K k3, V v3) Return an immutable sorted map with three entries.