@Retention(value=RUNTIME) @Target(value=METHOD) @Inherited public @interface ObjectDiffProperty
Modifier and Type | Optional Element and Description |
---|---|
String[] |
categories
Categories will be passed along with the object node and can be used for advanced filtering of specific property groups.
|
boolean |
equalsOnly
Causes the
Differs to compare the object by using the Object.equals(Object)
method instead of introspection. |
boolean |
ignore
Causes the
Differs to skip the marked property and all its children. |
public abstract boolean ignore
Differs
to skip the marked property and all its children.true
if the property should be ignored.public abstract boolean equalsOnly
Differs
to compare the object by using the Object.equals(Object)
method instead of introspection.true
if the property should be compared via Object.equals(Object)
.public abstract String[] categories
Copyright © 2012. All Rights Reserved.