Java javax.xml.transform TransformerFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.transform TransformerFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.transform TransformerFactory.

The text is from its open source code.

Method

SourcegetAssociatedStylesheet(Source source, String media, String title, String charset)
Get the stylesheet specification(s) associated with the XML Source document via the xml-stylesheet processing instruction that match the given criteria.
ClassgetClass()
Returns the runtime class of this Object .
ErrorListenergetErrorListener()
Get the error event handler for the TransformerFactory.
booleangetFeature(String name)
Look up the value of a feature.
URIResolvergetURIResolver()
Get the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.
TransformerFactorynewInstance()
Obtain a new instance of a TransformerFactory .
TransformerFactorynewInstance(String factoryClassName, ClassLoader classLoader)
Obtain a new instance of a TransformerFactory from factory class name.
TemplatesnewTemplates(Source source)
Process the Source into a Templates object, which is a a compiled representation of the source.
TransformernewTransformer()
Create a new Transformer that performs a copy of the Source to the Result .
TransformernewTransformer(Source source)
Process the Source into a Transformer Object .
voidsetAttribute(String name, Object value)
Allows the user to set specific attributes on the underlying implementation.
voidsetErrorListener(ErrorListener listener)
Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself.
voidsetFeature(String name, boolean value)

Set a feature for this TransformerFactory and Transformer s or Template s created by this factory.

voidsetURIResolver(URIResolver resolver)
Set an object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.