ImmutableBiMap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.immutablebimap.copyofReturns an immutable bimap containing the given entries. The returned bimap iterates over entries in the same order as the original iterable.
ArrayListMultimap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.arraylistmultimap.createCreates a new, empty ArrayListMultimap with the default initial capacities. This method will soon be deprecated in favor of MultimapBuilder.hashKeys().arrayListValues().build().
ImmutableMultimap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.immutablemultimap.copyofReturns an immutable multimap containing the same mappings as multimap, in the "key-grouped" iteration order described in the class documentation. Despite the method name, this method attempts to avoid actually copying the data when it is safe to do so. The exact circumstances under which a copy will or will not be performed are undocumented and subject to change.
AbstractMapEntryDecorator 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.apachecommons.collections.keyvalue.abstractmapentrydecorator.setvalue
LinkedHashMultimap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.linkedhashmultimap.createCreates a new, empty LinkedHashMultimap with the default initial capacities.
ForwardingMapEntry 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.forwardingmapentry.setvalue
ImmutableMap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.immutablemap.ofReturns the empty map. This map behaves and performs comparably to Collections#emptyMap, and is preferable mainly for consistency and maintainability of your code.
ImmutableMap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.immutablemap.copyofReturns an immutable map containing the specified entries. The returned map iterates over entries in the same order as the original iterable.
EnumBiMap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.enumbimap.createReturns a new, empty EnumBiMap using the specified key and value types.
ImmutableSortedMap 文档
https://docs.microsoft.com/zh-cn/java/api/com.azure.cosmos.implementation.guava25.collect.immutablesortedmap.naturalorderReturns a builder that creates immutable sorted maps whose keys are ordered by their natural ordering. The sorted maps use <C>natural() as the comparator.