Class Diffy

java.lang.Object
com.bazaarvoice.jolt.Diffy
Direct Known Subclasses:
ArrayOrderObliviousDiffy

public class Diffy extends Object
JSON Diff tool that will walk two "JSON" objects simultaneously and identify mismatches. Algorithm : 1) make a copy of both input objects 2) walk both objects and _remove_ items that match 3) return what is left of the two objects in the Result In the case a full / "sucessful" match, Diffy returns a Result object with isEmpty() == true.