Class EntryValueChange
- java.lang.Object
-
- org.javers.core.diff.changetype.map.EntryChange
-
- org.javers.core.diff.changetype.map.EntryValueChange
-
- All Implemented Interfaces:
java.io.Serializable
public class EntryValueChange extends EntryChange
Changed value assigned to a key in a Map- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryValueChange(java.lang.Object key, java.lang.Object leftValue, java.lang.Object rightValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.ObjectgetLeftValue()java.lang.ObjectgetRightValue()AtomicgetWrappedLeftValue()AtomicgetWrappedRightValue()inthashCode()protected java.lang.StringprettyPrint(PrettyValuePrinter valuePrinter)java.lang.StringtoString()-
Methods inherited from class org.javers.core.diff.changetype.map.EntryChange
getKey, getWrappedKey
-
-
-
-
Method Detail
-
getLeftValue
public java.lang.Object getLeftValue()
-
getRightValue
public java.lang.Object getRightValue()
-
getWrappedLeftValue
public Atomic getWrappedLeftValue()
-
getWrappedRightValue
public Atomic getWrappedRightValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
prettyPrint
protected java.lang.String prettyPrint(PrettyValuePrinter valuePrinter)
- Specified by:
prettyPrintin classEntryChange
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classEntryChange
-
hashCode
public int hashCode()
- Overrides:
hashCodein classEntryChange
-
-