Java org.apache.commons.collections.bidimap TreeBidiMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections.bidimap TreeBidiMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections.bidimap TreeBidiMap.

The text is from its open source code.

Constructor

TreeBidiMap()
Constructs a new empty TreeBidiMap.
TreeBidiMap(final Map map)
Constructs a new TreeBidiMap by copying an existing Map.

Method

booleancontainsKey(final Object key)
Checks whether this map contains the a mapping for the specified key.
booleancontainsValue(final Object value)
Checks whether this map contains the a mapping for the specified value.
Objectput(final Object key, final Object value)
Puts the key-value pair into the map, replacing any previous pair.
Objectremove(final Object key)
Removes the mapping for this key from this map if present.
ObjectremoveValue(final Object value)
Removes the mapping for this value from this map if present.