Java com.google.common.collect SortedSetMultimap fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect SortedSetMultimap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect SortedSetMultimap.

The text is from its open source code.

Implementation

com.google.common.collect.SortedSetMultimap has the following implementations.
Click this link to see all its implementation.

Method

Map>asMap()
Returns a map view that associates each key with the corresponding values in the multimap.
booleancontainsKey(@Nullable Object key)
Returns true if this multimap contains at least one key-value pair with the key key .
Set>entries()

Because a SetMultimap has unique values for a given key, this method returns a Set , instead of the java.util.Collection specified in the Multimap interface.

SortedSetget(@Nullable K key)
Returns a collection view of all values associated with a key.
booleanisEmpty()
Returns true if this multimap contains no key-value pairs.
Multisetkeys()
Returns a view collection containing the key from each key-value pair in this multimap, without collapsing duplicates.
SetkeySet()
Returns a view collection of all distinct keys contained in this multimap.
booleanput(@Nullable K key, @Nullable V value)
Stores a key-value pair in this multimap.
booleanputAll(@Nullable K key, Iterable values)
Stores a key-value pair in this multimap for each of values , all using the same key, key .
booleanremove(@Nullable Object key, @Nullable Object value)
Removes a single key-value pair with the key key and the value value from this multimap, if such exists.
SortedSetremoveAll(@Nullable Object key)
Removes all values associated with a given key.
Collectionvalues()
Returns a view collection containing the value from each key-value pair contained in this multimap, without collapsing duplicates (so values().size() == size() ).