Package com.cedarsoftware.util
Class GraphComparator.Delta
- java.lang.Object
-
- com.cedarsoftware.util.GraphComparator.Delta
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GraphComparator.DeltaError
- Enclosing class:
- GraphComparator
public static class GraphComparator.Delta extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GraphComparator.Delta.Command
These are all possible Delta.Commands that are generated when performing the graph comparison.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
GraphComparator.Delta.Command
getCmd()
String
getFieldName()
Object
getId()
Object
getOptionalKey()
Object
getSourceValue()
Object
getTargetValue()
int
hashCode()
void
setCmd(GraphComparator.Delta.Command cmd)
void
setFieldName(String fieldName)
void
setId(Object id)
void
setOptionalKey(Object optionalKey)
void
setSourceValue(Object srcValue)
void
setTargetValue(Object targetValue)
String
toString()
-
-
-
Method Detail
-
getId
public Object getId()
-
setId
public void setId(Object id)
-
getFieldName
public String getFieldName()
-
setFieldName
public void setFieldName(String fieldName)
-
getSourceValue
public Object getSourceValue()
-
setSourceValue
public void setSourceValue(Object srcValue)
-
getTargetValue
public Object getTargetValue()
-
setTargetValue
public void setTargetValue(Object targetValue)
-
getOptionalKey
public Object getOptionalKey()
-
setOptionalKey
public void setOptionalKey(Object optionalKey)
-
getCmd
public GraphComparator.Delta.Command getCmd()
-
setCmd
public void setCmd(GraphComparator.Delta.Command cmd)
-
-