Uses of Interface
org.xmlunit.builder.Input.Builder
-
Packages that use Input.Builder Package Description org.custommonkey.xmlunit Root of the XMLUnit 1.x compatibility layer.org.xmlunit.builder Provides fluent builders for core parts of XMLUnit. -
-
Uses of Input.Builder in org.custommonkey.xmlunit
Constructors in org.custommonkey.xmlunit with parameters of type Input.Builder Constructor Description Transform(Input.Builder input, Input.Builder stylesheet)
-
Uses of Input.Builder in org.xmlunit.builder
Subinterfaces of Input.Builder in org.xmlunit.builder Modifier and Type Interface Description static interface
Input.TransformationBuilder
BuildsSource
s by transforming other sources.Classes in org.xmlunit.builder that implement Input.Builder Modifier and Type Class Description private static class
Input.SourceHoldingBuilder
private static class
Input.StreamBuilder
private static class
Input.Transformation
class
JaxbBuilder
Input.Builder
for Jaxb-Object and creating aJAXBSource
.Methods in org.xmlunit.builder that return Input.Builder Modifier and Type Method Description static Input.Builder
Input. from(java.lang.Object object)
Return the matching Builder for the supported types:Source
,Input.Builder
,Document
,Node
, byte[] (XML as byte[]),String
(XML as String),File
(contains XML),URL
(to an XML-Document),URI
(to an XML-Document),InputStream
,ReadableByteChannel
, Jaxb-Object
(marshal-able withJAXB
.marshal(...))static Input.Builder
Input. fromByteArray(byte[] b)
Build a Source from an array of bytes.static Input.Builder
Input. fromChannel(java.nio.channels.ReadableByteChannel c)
Build a Source from a channel.static Input.Builder
Input. fromDocument(org.w3c.dom.Document d)
Build a Source from a DOM Document.static Input.Builder
Input. fromFile(java.io.File f)
Build a Source from a file.static Input.Builder
Input. fromFile(java.lang.String name)
Build a Source from a named file.static Input.Builder
Input. fromNode(org.w3c.dom.Node n)
Build a Source from a DOM Node.static Input.Builder
Input. fromReader(java.io.Reader r)
Build a Source from a reader.static Input.Builder
Input. fromStream(java.io.InputStream s)
Build a Source from a stream.static Input.Builder
Input. fromString(java.lang.String s)
Build a Source from a string.static Input.Builder
Input. fromURI(java.lang.String uri)
Build a Source from an URI.static Input.Builder
Input. fromURI(java.net.URI uri)
Build a Source from an URI.static Input.Builder
Input. fromURL(java.net.URL url)
Build a Source from an URL.Methods in org.xmlunit.builder with parameters of type Input.Builder Modifier and Type Method Description static Input.TransformationBuilder
Input. byTransforming(Input.Builder b)
Build a Source by XSLT transforming a different Source.Input.TransformationBuilder
Input.Transformation. withStylesheet(Input.Builder b)
Input.TransformationBuilder
Input.TransformationBuilder. withStylesheet(Input.Builder b)
Sets the stylesheet to use.
-