Uses of Enum
org.xmlunit.diff.ComparisonType
Package
Description
Contains XMLUnit
DifferenceEngine
that is
at the heart of all comparisons as well as supporting interfaces
and implementations.-
Uses of ComparisonType in org.xmlunit.diff
Modifier and TypeMethodDescriptionComparison.getType()
The kind of comparison performed.static ComparisonType
Returns the enum constant of this type with the specified name.static ComparisonType[]
ComparisonType.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionstatic DifferenceEvaluator
DifferenceEvaluators.downgradeDifferencesToEqual
(ComparisonType... types) Creates a DifferenceEvaluator that returns a EQUAL result for differences found in one of the given ComparisonTypes.static DifferenceEvaluator
DifferenceEvaluators.downgradeDifferencesToSimilar
(ComparisonType... types) Creates a DifferenceEvaluator that returns a SIMILAR result for differences (Comparisons that are not EQUAL) found in one of the given ComparisonTypes.ComparisonFormatter.getDetails
(Comparison.Detail details, ComparisonType type, boolean formatXml) Return the xml node fromComparison.Detail.getTarget()
as formatted String.DefaultComparisonFormatter.getDetails
(Comparison.Detail difference, ComparisonType type, boolean formatXml) Return the xml node fromComparison.Detail.getTarget()
as formatted String.protected String
DefaultComparisonFormatter.getFullFormattedXml
(Node node, ComparisonType type, boolean formatXml) Formats the node using a format suitable for the node type and comparison.protected String
DefaultComparisonFormatter.getShortString
(Node node, String xpath, ComparisonType type) Return a String representation forDefaultComparisonFormatter.getShortString(org.w3c.dom.Node, java.lang.String, org.xmlunit.diff.ComparisonType)
that describes the "thing" that has been compared so users know how to locate it.protected Object
DefaultComparisonFormatter.getValue
(Object value, ComparisonType type) May alter the display of a comparison value forDefaultComparisonFormatter.getShortString(org.w3c.dom.Node, java.lang.String, org.xmlunit.diff.ComparisonType)
based on the comparison type.static DifferenceEvaluator
DifferenceEvaluators.upgradeDifferencesToDifferent
(ComparisonType... types) Creates a DifferenceEvaluator that returns a DIFFERENT result for differences (Comparisons that are not EQUAL) found in one of the given ComparisonTypes.ModifierConstructorDescriptionComparison
(ComparisonType t, Node controlTarget, String controlXPath, Object controlValue, String controlParentXPath, Node testTarget, String testXPath, Object testValue, String testParentXPath) Creates a new comparison.