Interface Transform.TransformationResult

Enclosing class:
Transform

public static interface Transform.TransformationResult
Provides different options to obtain the result of an XSLT transformation.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Output the result to a TraX Result.
    Output the result to a DOM Document.
    Output the result to a String.
  • Method Details

    • to

      void to(Result r)
      Output the result to a TraX Result.
      Parameters:
      r - to send output to
    • toString

      String toString()
      Output the result to a String.
      Overrides:
      toString in class Object
      Returns:
      transformation result as String
    • toDocument

      Document toDocument()
      Output the result to a DOM Document.
      Returns:
      transformation result as Document