Uses of Class
org.xml.sax.SAXNotSupportedException
Package
Description
Provides the classes for processing XML documents with a SAX (Simple API for XML)
parser or a DOM (Document Object Model) Document builder.
Provides an API for validation of XML documents.
Provides the interfaces for the Simple API for XML (SAX).
Provides helper classes, including
support for bootstrapping SAX-based applications.
-
Uses of SAXNotSupportedException in javax.xml.parsers
Modifier and TypeMethodDescriptionabstract boolean
SAXParserFactory.getFeature
(String name) Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.abstract Object
SAXParser.getProperty
(String name) Returns the particular property requested for in the underlying implementation ofXMLReader
.abstract void
SAXParserFactory.setFeature
(String name, boolean value) Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.abstract void
SAXParser.setProperty
(String name, Object value) Sets the particular property in the underlying implementation ofXMLReader
. -
Uses of SAXNotSupportedException in javax.xml.validation
Modifier and TypeMethodDescriptionboolean
SchemaFactory.getFeature
(String name) Look up the value of a feature flag.boolean
Validator.getFeature
(String name) Look up the value of a feature flag.boolean
ValidatorHandler.getFeature
(String name) Look up the value of a feature flag.SchemaFactory.getProperty
(String name) Look up the value of a property.Validator.getProperty
(String name) Look up the value of a property.ValidatorHandler.getProperty
(String name) Look up the value of a property.void
SchemaFactory.setFeature
(String name, boolean value) Set a feature for thisSchemaFactory
,Schema
s created by this factory, and by extension,Validator
s andValidatorHandler
s created by thoseSchema
s.void
Validator.setFeature
(String name, boolean value) Set the value of a feature flag.void
ValidatorHandler.setFeature
(String name, boolean value) Set a feature for thisValidatorHandler
.void
SchemaFactory.setProperty
(String name, Object object) Set the value of a property.void
Validator.setProperty
(String name, Object object) Set the value of a property.void
ValidatorHandler.setProperty
(String name, Object object) Set the value of a property. -
Uses of SAXNotSupportedException in org.xml.sax
Modifier and TypeMethodDescriptionboolean
XMLReader.getFeature
(String name) Look up the value of a feature flag.XMLReader.getProperty
(String name) Look up the value of a property.void
XMLReader.setFeature
(String name, boolean value) Set the value of a feature flag.void
XMLReader.setProperty
(String name, Object value) Set the value of a property. -
Uses of SAXNotSupportedException in org.xml.sax.helpers
Modifier and TypeMethodDescriptionboolean
ParserAdapter.getFeature
(String name) Check a parser feature flag.boolean
XMLFilterImpl.getFeature
(String name) Look up the value of a feature.ParserAdapter.getProperty
(String name) Get a parser property.XMLFilterImpl.getProperty
(String name) Look up the value of a property.void
ParserAdapter.setFeature
(String name, boolean value) Set a feature flag for the parser.void
XMLFilterImpl.setFeature
(String name, boolean value) Set the value of a feature.void
ParserAdapter.setProperty
(String name, Object value) Set a parser property.void
XMLFilterImpl.setProperty
(String name, Object value) Set the value of a property.