java-object-diff
java-object-diff copied to clipboard
Library to diff and merge Java objects with ease
The MANIFEST.MF for version 0.95 contains the bnd-directive `Export-Packages: {local-packages}`. That directive is meaningless for the OSGi container that handles the package provision. Instead the Export-Package should contain a list...
Sorry this is not an issue but just a question. Is ObjectDiffer thread safe and non-stateful? Can I have only one instance of it in my system?
E:\src\java-object-diff-master\src\main\java\de\danielbechler\diff\selector\CollectionItemElementSelector.java:66: warning: no @return public Object getItem() ^ E:\src\java-object-diff-master\src\main\java\de\danielbechler\diff\selector\CollectionItemElementSelector.java:35: warning: no description for @param * @param item ^ E:\src\java-object-diff-master\src\main\java\de\danielbechler\diff\selector\MapKeyElementSelector.java:38: warning: no @return public Object getKey() ^ E:\src\java-object-diff-master\src\main\java\de\danielbechler\util\Assert.java:63: warning: no @param...
Signed-off-by: Jamin W. Collins
When visiting a map change, i need access to the map key. I'm doing this: ElementSelector elementSelector = node.getPath().getLastElementSelector(); if (elementSelector instanceof MapKeyElementSelector) { Object key = ((MapKeyElementSelector) elementSelector).getKey(); ......
This PR adds several new introspectors to support a wider array of use-cases. The `FieldIntrospector` detects the properties of the underlying classes by scanning the public fields and exposing them...
In the below class, java-object-diff is just printing. How to iterate all the changes.? > Property at path '/name' has changed from [ Tommy C. Smart ] to [ >...
Hi, we get (sometimes) an exception when comparing two objects and I don't know what it means: `Caused by: java.lang.IllegalArgumentException: Detected inconsistency in enter/leave sequence. Must always be LIFO. at...
Can I exclude node using some static method from some external class? For example Hibernate.isInitialized(). I try do this by using InclusionResolver but there is no access to field via...
We would like to use java-object-diff to compare objects sent via JSON, so we expect to have a certain amount of floating point inacurracy. It would be great if we...