Uses of Interface
org.xmlunit.util.Mapper
-
Packages that use Mapper Package Description org.xmlunit.diff Contains XMLUnitDifferenceEngine
that is at the heart of all comparisons as well as supporting interfaces and implementations.org.xmlunit.util Internal utilities hiding the differences between .NET and Java implementations. -
-
Uses of Mapper in org.xmlunit.diff
Classes in org.xmlunit.diff that implement Mapper Modifier and Type Class Description (package private) class
ChildNodeXPathContextProvider
MapsNode
toXPathContext
by assuming all nodes passed in are child nodes of the same parent node who's XPathContext is provided as argument to the constructor.class
RecursiveXPathBuilder
Finds the XPathContext of a Node by recursively building up the XPathContext.Fields in org.xmlunit.diff declared as Mapper Modifier and Type Field Description private static Mapper<org.w3c.dom.Node,javax.xml.namespace.QName>
DOMDifferenceEngine. QNAME_MAPPER
Maps Nodes to their QNames.(package private) static Mapper<org.w3c.dom.Node,XPathContext.NodeInfo>
ElementSelectors. TO_NODE_INFO
Maps Nodes to their NodeInfo equivalent. -
Uses of Mapper in org.xmlunit.util
Fields in org.xmlunit.util declared as Mapper Modifier and Type Field Description private Mapper<? super F,T>
Linqy.MappingIterator. mapper
Methods in org.xmlunit.util with parameters of type Mapper Modifier and Type Method Description static <F,T>
java.lang.Iterable<T>Linqy. map(java.lang.Iterable<F> from, Mapper<? super F,T> mapper)
Create a new iterable by applying a mapper function to each element of a given sequence.Constructors in org.xmlunit.util with parameters of type Mapper Constructor Description MappingIterator(java.util.Iterator<F> i, Mapper<? super F,T> mapper)
-