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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

Map>asMap()

Note: The returned map's values are guaranteed to be of type List .

Listget(@Nullable K key)

Because the values for a given key may have duplicates and follow the insertion ordering, this method returns a List , instead of the java.util.Collection specified in the Multimap interface.

ListremoveAll(@Nullable Object key)

Because the values for a given key may have duplicates and follow the insertion ordering, this method returns a List , instead of the java.util.Collection specified in the Multimap interface.

ListreplaceValues(K key, Iterable values)

Because the values for a given key may have duplicates and follow the insertion ordering, this method returns a List , instead of the java.util.Collection specified in the Multimap interface.

StringtoString()
Returns a string representation of the object.