Java org.jdom2.transform XSLTransformer fields, constructors, methods, implement or subclass

Example usage for Java org.jdom2.transform XSLTransformer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jdom2.transform XSLTransformer.

The text is from its open source code.

Constructor

XSLTransformer(Source stylesheet)
XSLTransformer(String stylesheetSystemId)
Creates a transformer for a given stylesheet system id.
XSLTransformer(InputStream stylesheet)

This will create a new XSLTransformer by reading the stylesheet from the specified InputStream.

XSLTransformer(Reader stylesheet)

This will create a new XSLTransformer by reading the stylesheet from the specified Reader.

XSLTransformer(File stylesheet)

This will create a new XSLTransformer by reading the stylesheet from the specified File.

XSLTransformer(Document stylesheet)

This will create a new XSLTransformer by reading the stylesheet from the specified Document.

Method

Listtransform(List inputNodes)
Transforms the given input nodes to a list of output nodes.
Documenttransform(Document inputDoc)
Transforms the given document to an output document.