Uses of Enum
org.xmlunit.diff.ComparisonType
Packages that use 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
Methods in org.xmlunit.diff that return ComparisonTypeModifier and TypeMethodDescriptionComparison.getType()The kind of comparison performed.static ComparisonTypeReturns 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.Methods in org.xmlunit.diff with parameters of type ComparisonTypeModifier and TypeMethodDescriptionstatic DifferenceEvaluatorDifferenceEvaluators.downgradeDifferencesToEqual(ComparisonType... types) Creates a DifferenceEvaluator that returns a EQUAL result for differences found in one of the given ComparisonTypes.static DifferenceEvaluatorDifferenceEvaluators.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 StringDefaultComparisonFormatter.getFullFormattedXml(Node node, ComparisonType type, boolean formatXml) Formats the node using a format suitable for the node type and comparison.protected StringDefaultComparisonFormatter.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 ObjectDefaultComparisonFormatter.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 DifferenceEvaluatorDifferenceEvaluators.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.Constructors in org.xmlunit.diff with parameters of type ComparisonTypeModifierConstructorDescriptionComparison(ComparisonType t, Node controlTarget, String controlXPath, Object controlValue, String controlParentXPath, Node testTarget, String testXPath, Object testValue, String testParentXPath) Creates a new comparison.