Uses of Class
javax.xml.transform.TransformerConfigurationException
Package | Description |
---|---|
javax.xml.transform |
Defines the generic APIs for processing transformation instructions,
and performing a transformation from source to result.
|
javax.xml.transform.sax |
Provides SAX specific transformation classes.
|
-
Uses of TransformerConfigurationException in javax.xml.transform
Methods in javax.xml.transform that throw TransformerConfigurationException Modifier and Type Method Description abstract Source
TransformerFactory. getAssociatedStylesheet(Source source, String media, String title, String charset)
Get the stylesheet specification(s) associated with the XMLSource
document via the xml-stylesheet processing instruction that match the given criteria.abstract Templates
TransformerFactory. newTemplates(Source source)
Process the Source into a Templates object, which is a a compiled representation of the source.Transformer
Templates. newTransformer()
Create a new transformation context for this Templates object.abstract Transformer
TransformerFactory. newTransformer()
Create a newTransformer
that performs a copy of theSource
to theResult
.abstract Transformer
TransformerFactory. newTransformer(Source source)
Process theSource
into aTransformer
Object
.abstract void
TransformerFactory. setFeature(String name, boolean value)
Set a feature for thisTransformerFactory
andTransformer
s orTemplate
s created by this factory. -
Uses of TransformerConfigurationException in javax.xml.transform.sax
Methods in javax.xml.transform.sax that throw TransformerConfigurationException Modifier and Type Method Description abstract TemplatesHandler
SAXTransformerFactory. newTemplatesHandler()
Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object.abstract TransformerHandler
SAXTransformerFactory. newTransformerHandler()
Get a TransformerHandler object that can process SAX ContentHandler events into a Result.abstract TransformerHandler
SAXTransformerFactory. newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the transformation instructions specified by the argument.abstract TransformerHandler
SAXTransformerFactory. newTransformerHandler(Templates templates)
Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.abstract XMLFilter
SAXTransformerFactory. newXMLFilter(Source src)
Create an XMLFilter that uses the given Source as the transformation instructions.abstract XMLFilter
SAXTransformerFactory. newXMLFilter(Templates templates)
Create an XMLFilter, based on the Templates argument..