Example usage for Java javax.xml.parsers SAXParserFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
Class> | getClass() Returns the runtime class of this Object . |
boolean | getFeature(String name) Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader. |
boolean | isNamespaceAware() Indicates whether or not the factory is configured to produce parsers which are namespace aware. |
boolean | isValidating() Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse. |
SAXParserFactory | newInstance() Obtain a new instance of a SAXParserFactory . |
SAXParserFactory | newInstance(String factoryClassName, ClassLoader classLoader) Obtain a new instance of a SAXParserFactory from class name. |
SAXParser | newSAXParser() Creates a new instance of a SAXParser using the currently configured factory parameters. |
void | setFeature(String name, boolean value) Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader. |
void | setNamespaceAware(boolean awareness) Specifies that the parser produced by this code will provide support for XML namespaces. |
void | setSchema(Schema schema) Set the Schema to be used by parsers created from this factory. |
void | setValidating(boolean validating) Specifies that the parser produced by this code will validate documents as they are parsed. |
void | setXIncludeAware(final boolean state) Set state of XInclude processing. |