Package org.xmlunit.builder
Interface Transform.TransformationResult
-
- All Known Implementing Classes:
Transform.TransformationBuilder
- Enclosing class:
- Transform
public static interface Transform.TransformationResult
Provides different options to obtain the result of an XSLT transformation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
to(javax.xml.transform.Result r)
Output the result to a TraX Result.org.w3c.dom.Document
toDocument()
Output the result to a DOM Document.java.lang.String
toString()
Output the result to a String.
-
-
-
Method Detail
-
to
void to(javax.xml.transform.Result r)
Output the result to a TraX Result.- Parameters:
r
- to send output to
-
toString
java.lang.String toString()
Output the result to a String.- Overrides:
toString
in classjava.lang.Object
- Returns:
- transformation result as String
-
toDocument
org.w3c.dom.Document toDocument()
Output the result to a DOM Document.- Returns:
- transformation result as Document
-
-