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