Uses of Class
cloud.opencode.base.collections.immutable.ImmutableSetMultimap
Packages that use ImmutableSetMultimap
Package
Description
Immutable Collections Package
不可变集合包
Transform Collections Package - Collection Transformation Utilities
转换集合包 - 集合转换工具
-
Uses of ImmutableSetMultimap in cloud.opencode.base.collections.immutable
Methods in cloud.opencode.base.collections.immutable that return ImmutableSetMultimapModifier and TypeMethodDescriptionImmutableSetMultimap.Builder.build()Build the immutable set multimap.static <K,V> ImmutableSetMultimap <K, V> Copy from a multimap.ImmutableSetMultimap.inverse()Return the inverse multimap.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of()Return an empty immutable set multimap.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of(K k1, V v1) Return an immutable set multimap with one entry.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of(K k1, V v1, K k2, V v2) Return an immutable set multimap with two entries. -
Uses of ImmutableSetMultimap in cloud.opencode.base.collections.transform
Methods in cloud.opencode.base.collections.transform that return types with arguments of type ImmutableSetMultimapModifier and TypeMethodDescriptionstatic <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> MoreCollectorUtil.flatteningToImmutableSetMultimap(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends Stream<? extends V>> valuesMapper) Collector to ImmutableSetMultimap with flattening.static <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> MoreCollectorUtil.toImmutableSetMultimap(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends V> valueMapper) Collector to ImmutableSetMultimap.