net.sf.saxon.functions
Class DeepEqual
- EvaluableItem, InstructionInfoProvider, SequenceIterable, Serializable, SourceLocator
XSLT 2.0 deep-equal() function.
Supports deep comparison of two sequences (of nodes and/or atomic values)
optionally using a collation
static int | COMPARE_ANNOTATIONS - Flag indicating that elements and attributes must have the same type annotation to be considered
deep-equal
|
static int | COMPARE_STRING_VALUES - Flag indicating that elements and attributes should always be compared according to their string
value, not their typed value
|
static int | EXCLUDE_WHITESPACE_TEXT_NODES - Flag indicating that whitespace text nodes are ignored when comparing element nodes
|
static int | INCLUDE_COMMENTS - Flag indicating that comment children are taken into account when comparing element or document nodes
|
static int | INCLUDE_NAMESPACES - Flag indicating that two elements should only be considered equal if they have the same
in-scope namespaces
|
static int | INCLUDE_PREFIXES - Flag indicating that two element or attribute nodes are considered equal only if their
names use the same namespace prefix
|
static int | INCLUDE_PROCESSING_INSTRUCTIONS - Flag indicating that processing instruction nodes are taken into account when comparing element or document nodes
|
static int | JOIN_ADJACENT_TEXT_NODES - Flag indicating that adjacent text nodes in the top-level sequence are to be merged
|
static int | WARNING_IF_FALSE - Flag indicating that a warning message explaining the reason why the sequences were deemed non-equal
should be sent to the ErrorListener
|
addContextDocumentArgument , addDocToPathMap , checkArguments , computeCardinality , computeSpecialProperties , copy , getDetails , getErrorCodeForTypeErrors , getItemType , getRequiredType , makeSystemFunction , optimize , setDetails , useContextItemAsDefault |
addExternalFunctionCallToPathMap , checkArgumentCount , checkArguments , equals , explain , getArguments , getDisplayName , getFunctionName , getNumberOfArguments , hashCode , iterateSubExpressions , optimize , preEvaluate , promote , replaceSubExpression , setArguments , setFunctionName , simplify , simplifyArguments , toString , typeCheck |
addToPathMap , adoptChildExpression , checkPermittedContents , computeCardinality , computeDependencies , computeSpecialProperties , computeStaticProperties , copy , display , doPromotion , dynamicError , effectiveBooleanValue , evaluateAsString , evaluateItem , explain , explain , findParentOf , getCardinality , getColumnNumber , getConstructType , getContainer , getDependencies , getExecutable , getHostLanguage , getImplementationMethod , getInstructionInfo , getIntrinsicDependencies , getItemType , getLineNumber , getLocationId , getLocationProvider , getPublicId , getSlotsUsed , getSpecialProperties , getSystemId , hasLoopingSubexpression , implementsStaticTypeCheck , iterate , iterateEvents , iterateSubExpressions , markTailFunctionCalls , optimize , process , promote , replaceSubExpression , resetLocalStaticProperties , setContainer , setFiltered , setFlattened , setLocationId , simplify , staticTypeCheck , suppressValidation , toString , typeCheck , typeError |
COMPARE_ANNOTATIONS
public static final int COMPARE_ANNOTATIONS
Flag indicating that elements and attributes must have the same type annotation to be considered
deep-equal
COMPARE_STRING_VALUES
public static final int COMPARE_STRING_VALUES
Flag indicating that elements and attributes should always be compared according to their string
value, not their typed value
EXCLUDE_WHITESPACE_TEXT_NODES
public static final int EXCLUDE_WHITESPACE_TEXT_NODES
Flag indicating that whitespace text nodes are ignored when comparing element nodes
INCLUDE_COMMENTS
public static final int INCLUDE_COMMENTS
Flag indicating that comment children are taken into account when comparing element or document nodes
INCLUDE_NAMESPACES
public static final int INCLUDE_NAMESPACES
Flag indicating that two elements should only be considered equal if they have the same
in-scope namespaces
INCLUDE_PREFIXES
public static final int INCLUDE_PREFIXES
Flag indicating that two element or attribute nodes are considered equal only if their
names use the same namespace prefix
INCLUDE_PROCESSING_INSTRUCTIONS
public static final int INCLUDE_PROCESSING_INSTRUCTIONS
Flag indicating that processing instruction nodes are taken into account when comparing element or document nodes
JOIN_ADJACENT_TEXT_NODES
public static final int JOIN_ADJACENT_TEXT_NODES
Flag indicating that adjacent text nodes in the top-level sequence are to be merged
WARNING_IF_FALSE
public static final int WARNING_IF_FALSE
Flag indicating that a warning message explaining the reason why the sequences were deemed non-equal
should be sent to the ErrorListener
deepEquals
public static boolean deepEquals(SequenceIterator op1,
SequenceIterator op2,
GenericAtomicComparer collator,
Configuration config,
int flags)
Determine when two sequences are deep-equal
op1
- the first sequenceop2
- the second sequencecollator
- the collator to be usedconfig
- the configuration (gives access to the NamePool)flags
- bit-significant integer giving comparison options. Always zero for standard
F+O deep-equals comparison.
- true if the sequences are deep-equal