Package org.sosy_lab.common.collect
Class MapsDifference.DefaultVisitor<K,V>
java.lang.Object
org.sosy_lab.common.collect.MapsDifference.DefaultVisitor<K,V>
- All Implemented Interfaces:
MapsDifference.Visitor<K,V>
- Enclosing class:
- MapsDifference
public abstract static class MapsDifference.DefaultVisitor<K,V>
extends Object
implements MapsDifference.Visitor<K,V>
Default implementation of
MapsDifference.Visitor with empty methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddifferingValues(K pKey, V pLeftValue, V pRightValue) Accept a map difference.voidleftValueOnly(K pKey, V pLeftValue) voidrightValueOnly(K key, V rightValue)
-
Constructor Details
-
DefaultVisitor
public DefaultVisitor()
-
-
Method Details
-
leftValueOnly
- Specified by:
leftValueOnlyin interfaceMapsDifference.Visitor<K,V>
-
rightValueOnly
- Specified by:
rightValueOnlyin interfaceMapsDifference.Visitor<K,V>
-
differingValues
Description copied from interface:MapsDifference.VisitorAccept a map difference.- Specified by:
differingValuesin interfaceMapsDifference.Visitor<K,V> - Parameters:
pKey- The key.pLeftValue- The left value.pRightValue- The right value.
-