| Package | Description |
|---|---|
| javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
| javax.xml.validation |
This package provides an API for validation of XML documents.
|
| org.xml.sax |
This package provides the core SAX APIs.
|
| org.xml.sax.helpers |
This package contains "helper" classes, including support for bootstrapping SAX-based applications.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
SAXParserFactory.getFeature(String
Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.
|
abstract Object |
SAXParser.getProperty(String
Returns the particular property requested for in the underlying implementation of
XMLReader.
|
abstract void |
SAXParserFactory.setFeature(String
Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.
|
abstract void |
SAXParser.setProperty(String
Sets the particular property in the underlying implementation of
XMLReader.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SchemaFactory.getFeature(String
Look up the value of a feature flag.
|
boolean |
Validator.getFeature(String
Look up the value of a feature flag.
|
boolean |
ValidatorHandler.getFeature(String
Look up the value of a feature flag.
|
Object |
SchemaFactory.getProperty(String
Look up the value of a property.
|
Object |
Validator.getProperty(String
Look up the value of a property.
|
Object |
ValidatorHandler.getProperty(String
Look up the value of a property.
|
void |
SchemaFactory.setFeature(String
Set a feature for this
SchemaFactory,
Schemas created by this factory, and by extension,
Validators and
ValidatorHandlers created by those
Schemas.
|
void |
Validator.setFeature(String
Set the value of a feature flag.
|
void |
ValidatorHandler.setFeature(String
Set a feature for this
ValidatorHandler.
|
void |
SchemaFactory.setProperty(String
Set the value of a property.
|
void |
Validator.setProperty(String
Set the value of a property.
|
void |
ValidatorHandler.setProperty(String
Set the value of a property.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
XMLReader.getFeature(String
Look up the value of a feature flag.
|
Object |
XMLReader.getProperty(String
Look up the value of a property.
|
void |
XMLReader.setFeature(String
Set the value of a feature flag.
|
void |
XMLReader.setProperty(String
Set the value of a property.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ParserAdapter.getFeature(String
Check a parser feature flag.
|
boolean |
XMLFilterImpl.getFeature(String
Look up the value of a feature.
|
Object |
ParserAdapter.getProperty(String
Get a parser property.
|
Object |
XMLFilterImpl.getProperty(String
Look up the value of a property.
|
void |
ParserAdapter.setFeature(String
Set a feature flag for the parser.
|
void |
XMLFilterImpl.setFeature(String
Set the value of a feature.
|
void |
ParserAdapter.setProperty(String
Set a parser property.
|
void |
XMLFilterImpl.setProperty(String
Set the value of a property.
|