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

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

Introduction

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

The text is from its open source code.

Method

LinkedHashMultimapcreate()
Creates a new, empty LinkedHashMultimap with the default initial capacities.
LinkedHashMultimapcreate(int expectedKeys, int expectedValuesPerKey)
Constructs an empty LinkedHashMultimap with enough capacity to hold the specified numbers of keys and values without rehashing.
LinkedHashMultimapcreate(Multimap multimap)
Constructs a LinkedHashMultimap with the same mappings as the specified multimap.
Set>entries()
Returns a set of all key-value pairs.
SetreplaceValues(@Nullable K key, Iterable values)

If values is not empty and the multimap already contains a mapping for key , the keySet() ordering is unchanged.

Collectionvalues()
Returns a collection of all values in the multimap.