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

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

Introduction

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

The text is from its open source code.

Method

NavigableMap>asMap()

Because a TreeMultimap has unique sorted keys, this method returns a NavigableMap , instead of the java.util.Map specified in the Multimap interface.

TreeMultimapcreate()
Creates an empty TreeMultimap ordered by the natural ordering of its keys and values.
TreeMultimapcreate(Comparator keyComparator, Comparator valueComparator)
Creates an empty TreeMultimap instance using explicit comparators.
TreeMultimapcreate( Multimap multimap)
Constructs a TreeMultimap , ordered by the natural ordering of its keys and values, with the same mappings as the specified multimap.
booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
NavigableSetget(@Nullable K key)
NavigableSetkeySet()

Because a TreeMultimap has unique sorted keys, this method returns a NavigableSet , instead of the java.util.Set specified in the Multimap interface.