Package com.deltaxml.deltacheck
Class CheckerResult
java.lang.Object
com.deltaxml.deltacheck.CheckerResult
An abstract representation of Checker.check(CheckerInput, CheckerInput) output.
An instance of this class produces two result types:
- Boolean - decides whether the content of both input files is equal
- Change Report - Represents content changes between A and B input files
- Since:
- 0.1
- Author:
- Michael Polowczuk
-
Method Summary
Modifier and TypeMethodDescriptionReturns aFileobject which contains a detailed analysis of the content that has changed between A and B inputs.booleanStates whether the content of both of the inputs are equal.
-
Method Details
-
isContentEqual
public boolean isContentEqual()States whether the content of both of the inputs are equal.- Returns:
- a boolean deciding the equality of the input files content.
-
getChangeReport
Returns aFileobject which contains a detailed analysis of the content that has changed between A and B inputs.- Returns:
- a file with an analysis of the content changes.
-