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

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

        org.w3c.dom.Document toDocument()
        Output the result to a DOM Document.