Java javax.xml.parsers SAXParserFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.parsers SAXParserFactory fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

ClassgetClass()
Returns the runtime class of this Object .
booleangetFeature(String name)
Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.
booleanisNamespaceAware()
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
booleanisValidating()
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
SAXParserFactorynewInstance()
Obtain a new instance of a SAXParserFactory .
SAXParserFactorynewInstance(String factoryClassName, ClassLoader classLoader)
Obtain a new instance of a SAXParserFactory from class name.
SAXParsernewSAXParser()
Creates a new instance of a SAXParser using the currently configured factory parameters.
voidsetFeature(String name, boolean value)
Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.
voidsetNamespaceAware(boolean awareness)
Specifies that the parser produced by this code will provide support for XML namespaces.
voidsetSchema(Schema schema)
Set the Schema to be used by parsers created from this factory.
voidsetValidating(boolean validating)
Specifies that the parser produced by this code will validate documents as they are parsed.
voidsetXIncludeAware(final boolean state)
Set state of XInclude processing.