int | getColumnNumber()- SAX Locator method (don't invoke on parser);
|
ContentHandler | getContentHandler()- SAX2: Returns the object used to report the logical
content of an XML document.
|
DTDHandler | getDTDHandler()- SAX2: Returns the object used to process declarations related
to notations and unparsed entities.
|
EntityResolver | getEntityResolver()- SAX2: Returns the object used when resolving external
entities during parsing (both general and parameter entities).
|
ErrorHandler | getErrorHandler()- SAX2: Returns the object used to receive callbacks for XML
errors of all levels (fatal, nonfatal, warning); this is never null;
|
boolean | getFeature(String featureId)- SAX2: Tells the value of the specified feature flag.
|
int | getIndex(String xmlName)- SAX2 Attributes method (don't invoke on parser);
|
int | getIndex(String uri, String local)- SAX2 Attributes method (don't invoke on parser);
|
int | getLength()- SAX1 AttributeList, SAX2 Attributes method
(don't invoke on parser);
|
int | getLineNumber()- SAX Locator method (don't invoke on parser);
|
String | getLocalName(int index)- SAX2 Attributes method (don't invoke on parser);
|
String | getName(int i)- SAX1 AttributeList method (don't invoke on parser);
|
Object | getProperty(String propertyId)- SAX2: Returns the specified property.
|
String | getPublicId()- SAX Locator method (don't invoke on parser);
|
String | getQName(int i)- SAX2 Attributes method (don't invoke on parser);
|
String | getSystemId()- SAX Locator method (don't invoke on parser);
|
String | getType(String xmlName)- SAX1 AttributeList, SAX2 Attributes method
(don't invoke on parser);
|
String | getType(String uri, String local)- SAX2 Attributes method (don't invoke on parser);
|
String | getType(int i)- SAX1 AttributeList, SAX2 Attributes method
(don't invoke on parser);
|
String | getURI(int index)- SAX2 Attributes method (don't invoke on parser);
|
String | getValue(String xmlName)- SAX1 AttributeList, SAX2 Attributes method
(don't invoke on parser);
|
String | getValue(String uri, String local)- SAX Attributes method (don't invoke on parser);
|
String | getValue(int i)- SAX1 AttributeList, SAX2 Attributes method
(don't invoke on parser);
|
void | parse(InputSource source)- SAX1, SAX2: Auxiliary API to parse an XML document, used mostly
when no URI is available.
|
void | parse(String systemId)- SAX1, SAX2: Preferred API to parse an XML document, using a
system identifier (URI).
|
void | setContentHandler(ContentHandler handler)- SAX2: Assigns the object used to report the logical
content of an XML document.
|
void | setDTDHandler(DTDHandler handler)- SAX1, SAX2: Set the DTD handler for this parser.
|
void | setDocumentHandler(DocumentHandler handler)- SAX2 programs should use the XMLReader interface
and a ContentHandler.
|
void | setEntityResolver(EntityResolver resolver)- SAX1, SAX2: Set the entity resolver for this parser.
|
void | setErrorHandler(ErrorHandler handler)- SAX1, SAX2: Set the error handler for this parser.
|
void | setFeature(String featureId, boolean state)- SAX2: Sets the state of feature flags in this parser.
|
void | setLocale(Locale locale)- SAX1: Sets the locale used for diagnostics; currently,
only locales using the English language are supported.
|
void | setProperty(String propertyId, Object property)- SAX2: Assigns the specified property.
|