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

    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.
    • toString

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

      Document toDocument()
      Output the result to a DOM Document.