Package org.xmlunit.builder
Interface Transform.TransformationResult
-
- Enclosing class:
- Transform
public static interface Transform.TransformationResultProvides different options to obtain the result of an XSLT transformation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidto(javax.xml.transform.Result r)Output the result to a TraX Result.org.w3c.dom.DocumenttoDocument()Output the result to a DOM Document.java.lang.StringtoString()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:
toStringin 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
-
-