Uses of Interface
cloud.opencode.base.collections.Multimap
Packages that use Multimap
Package
Description
Immutable Collections Package
不可变集合包
Specialized Collections Package - Specialized Collection Types
专用集合包 - 专用集合类型
-
Uses of Multimap in cloud.opencode.base.collections
Classes in cloud.opencode.base.collections that implement MultimapModifier and TypeClassDescriptionclassAbstractMultimap<K,V> AbstractMultimap - Abstract Base for Multimap Implementations AbstractMultimap - Multimap 实现的抽象基类classArrayListMultimap<K,V> ArrayListMultimap - List-based Multimap Implementation ArrayListMultimap - 基于列表的多重映射实现classHashSetMultimap<K,V> HashSetMultimap - Set-based Multimap Implementation HashSetMultimap - 基于集合的多重映射实现Methods in cloud.opencode.base.collections with parameters of type MultimapModifier and TypeMethodDescriptionstatic <K,V> ArrayListMultimap <K, V> Create an ArrayListMultimap from an existing multimap.static <K,V> HashSetMultimap <K, V> Create a HashSetMultimap from an existing multimap.default voidStore all key-value pairs from another multimap. -
Uses of Multimap in cloud.opencode.base.collections.immutable
Classes in cloud.opencode.base.collections.immutable that implement MultimapModifier and TypeClassDescriptionfinal classImmutableListMultimap - Immutable List Multimap Implementation ImmutableListMultimap - 不可变列表多值映射实现classImmutableMultimap<K,V> ImmutableMultimap - Immutable Multimap Implementation ImmutableMultimap - 不可变多值映射实现final classImmutableSetMultimap<K,V> ImmutableSetMultimap - Immutable Set Multimap Implementation ImmutableSetMultimap - 不可变集合多值映射实现Methods in cloud.opencode.base.collections.immutable with parameters of type MultimapModifier and TypeMethodDescriptionstatic <K,V> ImmutableListMultimap <K, V> Copy from a multimap.static <K,V> ImmutableMultimap <K, V> Copy from a multimap.static <K,V> ImmutableSetMultimap <K, V> Copy from a multimap.Put all entries from a multimap.voidPut all entries from a multimap. -
Uses of Multimap in cloud.opencode.base.collections.specialized
Subinterfaces of Multimap in cloud.opencode.base.collections.specializedModifier and TypeInterfaceDescriptioninterfaceListMultimap<K,V> ListMultimap - List-based Multimap Interface ListMultimap - 基于列表的多值映射接口interfaceSetMultimap<K,V> SetMultimap - Set-based Multimap Interface SetMultimap - 基于集合的多值映射接口interfaceSortedSetMultimap<K,V> SortedSetMultimap - Multimap with Sorted Set Values SortedSetMultimap - 具有排序集合值的多重映射Classes in cloud.opencode.base.collections.specialized that implement MultimapModifier and TypeClassDescriptionfinal classLinkedHashMultimap<K,V> LinkedHashMultimap - Insertion-Ordered Multimap Implementation LinkedHashMultimap - 保持插入顺序的多重映射实现classTreeSetMultimap<K,V> TreeSetMultimap - SortedSetMultimap Implementation using TreeSet TreeSetMultimap - 使用 TreeSet 的 SortedSetMultimap 实现Methods in cloud.opencode.base.collections.specialized with parameters of type MultimapModifier and TypeMethodDescriptionstatic <K, V extends Comparable<? super V>>
TreeSetMultimap<K, V> Create a TreeSetMultimap from an existing multimap.static <K,V> TreeSetMultimap <K, V> TreeSetMultimap.create(Multimap<? extends K, ? extends V> multimap, Comparator<? super V> valueComparator) Create a TreeSetMultimap from an existing multimap with custom comparator.