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

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

Introduction

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

The text is from its open source code.

Method

booleanareEqual()
Returns true if there are no differences between the two maps; that is, if the maps are equal.
Map>entriesDiffering()
Returns an unmodifiable map describing keys that appear in both maps, but with different values.
MapentriesInCommon()
Returns an unmodifiable map containing the entries that appear in both maps; that is, the intersection of the two maps.
MapentriesOnlyOnLeft()
Returns an unmodifiable map containing the entries from the left map whose keys are not present in the right map.
MapentriesOnlyOnRight()
Returns an unmodifiable map containing the entries from the right map whose keys are not present in the left map.
StringtoString()
Returns a string representation of the object.