All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

A

addAttribute(String, String, String). Method in class org.xml.sax.helpers.AttributeListImpl
Add an attribute to an attribute list.
ANY. Static variable in class oracle.xml.parser.v2.ElementDecl
Element content type - Children can be any element
appendChild(Node). Method in interface org.w3c.dom.Node
Adds the node newChild to the end of the list of children of this node.
appendChild(Node). Method in class oracle.xml.parser.v2.XMLNode
Adds the node newChild to the end of the list of children of this node.
appendData(String). Method in interface org.w3c.dom.CharacterData
Append the string to the end of the character data of the node.
ASTERISK. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - "*" node (has one children)
AttListDecl. Static variable in interface oracle.xml.parser.v2.XMLToken

AttListDecl ::= '<' '!' 'ATTLIST' S Name AttDef* S? '>'

AttName. Static variable in interface oracle.xml.parser.v2.XMLToken

AttName ::= Name

ATTRDECL. Static variable in class oracle.xml.parser.v2.XMLNode
A attribute declaration node
Attribute. Static variable in interface oracle.xml.parser.v2.XMLToken

Attribute ::= AttName Eq AttValue

ATTRIBUTE_NODE. Static variable in interface org.w3c.dom.Node
AttributeListImpl(). Constructor for class org.xml.sax.helpers.AttributeListImpl
Create an empty attribute list.
AttributeListImpl(AttributeList). Constructor for class org.xml.sax.helpers.AttributeListImpl
Construct a persistent copy of an existing attribute list.
AttValue. Static variable in interface oracle.xml.parser.v2.XMLToken

AttValue ::= '"' ([^<&"] | Reference)* '"'

| "'" ([^<&'] | Reference)* "'"


C

CDATA. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - StringType - CDATA
CDATA_SECTION_NODE. Static variable in interface org.w3c.dom.Node
cDATASection(char[], int, int). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of a CDATA Section.
cDATASection(char[], int, int). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of a CDATA Section.
CDSect. Static variable in interface oracle.xml.parser.v2.XMLToken

CDSect ::= CDStart CData CDEnd

CDStart ::= '<' '!' '[CDATA['

CData ::= (Char* - (Char* ']]>' Char*))

CDEnd ::= ']]>'

characters(char[], int, int). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of character data inside an element.
characters(char[], int, int). Method in interface org.xml.sax.DocumentHandler
Receive notification of character data.
characters(char[], int, int). Method in class org.xml.sax.HandlerBase
Receive notification of character data inside an element.
CharData. Static variable in interface oracle.xml.parser.v2.XMLToken

CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)

checkNamespace(String, String). Method in class oracle.xml.parser.v2.XMLElement
Returns if the element belongs to the namespace specified.
clear(). Method in class org.xml.sax.helpers.AttributeListImpl
Clear the attribute list.
cloneNode(boolean). Method in class oracle.xml.parser.v2.DTD
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
cloneNode(boolean). Method in interface org.w3c.dom.Node
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
cloneNode(boolean). Method in class oracle.xml.parser.v2.XMLAttr
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
cloneNode(boolean). Method in class oracle.xml.parser.v2.XMLDocument
Returns a duplicate of this document node.
cloneNode(boolean). Method in class oracle.xml.parser.v2.XMLElement
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
cloneNode(boolean). Method in class oracle.xml.parser.v2.XMLNode
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
code. Variable in class org.w3c.dom.DOMException
COMMA. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - "," node (has two children)
Comment. Static variable in interface oracle.xml.parser.v2.XMLToken

Comment ::= '<' '!' '--' ((Char - '-') | ('-' (Char - '-')))* '-->'

comment(String). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of a comment.
comment(String). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of a comment.
COMMENT_NODE. Static variable in interface org.w3c.dom.Node
createAttribute(String). Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
createAttribute(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates an Attr of the given name.
createAttribute(String, String). Method in class oracle.xml.parser.v2.NodeFactory
Creates an attribute node with the specified tag, and text.
createCDATASection(String). Method in interface org.w3c.dom.Document
Creates a CDATASection node whose value is the specified string.
createCDATASection(String). Method in class oracle.xml.parser.v2.NodeFactory
Creates a CDATA node with the specified text.
createCDATASection(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates a CDATASection node whose value is the specified string.
createComment(String). Method in interface org.w3c.dom.Document
Creates a Comment node given the specified string.
createComment(String). Method in class oracle.xml.parser.v2.NodeFactory
Creates a comment node with the specified text.
createComment(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates a Comment node given the specified string.
createDocument(). Method in class oracle.xml.parser.v2.NodeFactory
Creates a document node.
createDocumentFragment(). Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createDocumentFragment(). Method in class oracle.xml.parser.v2.XMLDocument
Creates an empty DocumentFragment object.
createElement(String). Method in interface org.w3c.dom.Document
Creates an element of the type specified.
createElement(String). Method in class oracle.xml.parser.v2.NodeFactory
Creates an Element node with the specified tag.
createElement(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates an element of the type specified.
createEntityReference(String). Method in interface org.w3c.dom.Document
Creates an EntityReference object.
createEntityReference(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates an EntityReference object.
createProcessingInstruction(String, String). Method in interface org.w3c.dom.Document
Creates a ProcessingInstruction node given the specified name and data strings.
createProcessingInstruction(String, String). Method in class oracle.xml.parser.v2.NodeFactory
Creates a PI node with the specified tag, and text.
createProcessingInstruction(String, String). Method in class oracle.xml.parser.v2.XMLDocument
Creates a ProcessingInstruction node given the specified name and data strings.
createTextNode(String). Method in interface org.w3c.dom.Document
Creates a Text node given the specified string.
createTextNode(String). Method in class oracle.xml.parser.v2.NodeFactory
Creates a text node with the specified text.
createTextNode(String). Method in class oracle.xml.parser.v2.XMLDocument
Creates a Text node given the specified string.

D

DEFAULT. Static variable in class oracle.xml.parser.v2.AttrDecl
Attribute presence - Default
DefaultXMLDocumentHandler(). Constructor for class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Constructs a default document handler
deleteData(int, int). Method in interface org.w3c.dom.CharacterData
Remove a range of characters from the node.
DOCUMENT_FRAGMENT_NODE. Static variable in interface org.w3c.dom.Node
DOCUMENT_NODE. Static variable in interface org.w3c.dom.Node
DOCUMENT_TYPE_NODE. Static variable in interface org.w3c.dom.Node
DOMException(short, String). Constructor for class org.w3c.dom.DOMException
DOMParser(). Constructor for class oracle.xml.parser.v2.DOMParser
Creates a new parser object.
DOMSTRING_SIZE_ERR. Static variable in class org.w3c.dom.DOMException
DTDName. Static variable in interface oracle.xml.parser.v2.XMLToken

DTDName ::= name


E

ElemDeclName. Static variable in interface oracle.xml.parser.v2.XMLToken

ElemDeclName ::= name

ELEMENT. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - 'leaf' node (has no children)
ELEMENT_NODE. Static variable in interface org.w3c.dom.Node
ELEMENTDECL. Static variable in class oracle.xml.parser.v2.XMLNode
An element declaration node.
elementdecl. Static variable in interface oracle.xml.parser.v2.XMLToken

elementdecl ::= '<' '!ELEMENT' S ElemDeclName S contentspec S? '>'

ELEMENTS. Static variable in class oracle.xml.parser.v2.ElementDecl
Element content type - Children can be elements as per Content Model
EMPTY. Static variable in class oracle.xml.parser.v2.ElementDecl
Element content type - No Children
EmptyElemTag. Static variable in interface oracle.xml.parser.v2.XMLToken

EmptyElemTag ::= '<' STagName (S Attribute)* S? '/' '>'

endDoctype(). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of end of the DTD.
endDoctype(). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of end of the DTD.
endDocument(). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the end of the document.
endDocument(). Method in interface org.xml.sax.DocumentHandler
Receive notification of the end of a document.
endDocument(). Method in class org.xml.sax.HandlerBase
Receive notification of the end of the document.
endElement(NSName). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the end of an element.
endElement(NSName). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of the end of an element.
endElement(String). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the end of an element.
endElement(String). Method in interface org.xml.sax.DocumentHandler
Receive notification of the end of an element.
endElement(String). Method in class org.xml.sax.HandlerBase
Receive notification of the end of an element.
ENTITIES. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - Entities
ENTITY. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - Entity
ENTITY_NODE. Static variable in interface org.w3c.dom.Node
ENTITY_REFERENCE_NODE. Static variable in interface org.w3c.dom.Node
EntityDecl. Static variable in interface oracle.xml.parser.v2.XMLToken

EntityDecl ::= '<' '!' ENTITY' S EntityDeclName S EntityDef S? '>'

| '<' '!' ENTITY' S '%' S EntityDeclName S PEDef S? '>'

EntityDef ::= EntityValue | (ExternalID NDataDecl?)

PEDef ::= EntityValue | ExternalID

EntityDeclName. Static variable in interface oracle.xml.parser.v2.XMLToken

EntityValue ::= '"' ([^%&"] | PEReference | Reference)* '"'

| "'" ([^%&'] | PEReference | Reference)* "'"

EntityValue. Static variable in interface oracle.xml.parser.v2.XMLToken

EntityDeclName ::= Name

ENUMERATION. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - EnumeratedType - Enumeration
ERROR. Static variable in class oracle.xml.parser.v2.XMLParseException
Code for non-fatal error
error(int, int, String, String, String, int, int, boolean). Method in class oracle.xml.parser.v2.XMLError
Adds a new error to the vector
error(SAXParseException). Method in interface org.xml.sax.ErrorHandler
Receive notification of a recoverable error.
error(SAXParseException). Method in class org.xml.sax.HandlerBase
Receive notification of a recoverable parser error.
ETag. Static variable in interface oracle.xml.parser.v2.XMLToken

ETag ::= '<' '/' ETagName S? '>'

ETagName. Static variable in interface oracle.xml.parser.v2.XMLToken

ETagName ::= Name

expectedElements(Element). Method in class oracle.xml.parser.v2.ElementDecl
Returns vector of element names that can be appended to the element.
expectedElements(Element). Method in class oracle.xml.parser.v2.XMLDocument
Returns vector of element names that can be appended to the element.
ExternalID. Static variable in interface oracle.xml.parser.v2.XMLToken

ExternalID ::= 'SYSTEM' S SystemLiteral

| 'PUBLIC' S PubidLiteral S SystemLiteral


F

FATAL_ERROR. Static variable in class oracle.xml.parser.v2.XMLParseException
Code for fatal error
fatalError(SAXParseException). Method in interface org.xml.sax.ErrorHandler
Receive notification of a non-recoverable error.
fatalError(SAXParseException). Method in class org.xml.sax.HandlerBase
Report a fatal XML parsing error.
findAttrDecl(String). Method in class oracle.xml.parser.v2.ElementDecl
Gets an attribute declaration object or null if not found
findElementDecl(String). Method in class oracle.xml.parser.v2.DTD
Finds an element declaration for the given tag name.
findEntity(String, boolean). Method in class oracle.xml.parser.v2.DTD
Finds a named entity in the DTD.
findNotation(String). Method in class oracle.xml.parser.v2.DTD
Retrieves the named notation from the DTD.
FIXED. Static variable in class oracle.xml.parser.v2.AttrDecl
Attribute presence - Fixed
formatErrorMessage(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the error message at specified index

G

getAttrDecls(). Method in class oracle.xml.parser.v2.ElementDecl
Gets an enumeration of attribute declarations
getAttribute(String). Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
getAttribute(String). Method in class oracle.xml.parser.v2.XMLElement
Retrieves an attribute value by name.
getAttributeNode(String). Method in interface org.w3c.dom.Element
Retrieves an Attr node by name.
getAttributeNode(String). Method in class oracle.xml.parser.v2.XMLElement
Retrieves an Attr node by name.
getAttributes(). Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttributes(). Method in class oracle.xml.parser.v2.XMLElement
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttributes(). Method in class oracle.xml.parser.v2.XMLNode
Gets a NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttrPresence(). Method in class oracle.xml.parser.v2.AttrDecl
Gets attribute presence
getAttrType(). Method in class oracle.xml.parser.v2.AttrDecl
Gets attribute type
getByteStream(). Method in class org.xml.sax.InputSource
Get the byte stream for this input source.
getCharacterStream(). Method in class org.xml.sax.InputSource
Get the character stream for this input source.
getChildNodes(). Method in class oracle.xml.parser.v2.DTD
A NodeList that contains all children of this node.
getChildNodes(). Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
getChildNodes(). Method in class oracle.xml.parser.v2.XMLNode
Gets a NodeList that contains all children of this node.
getChildrenByTagName(String). Method in class oracle.xml.parser.v2.XMLElement
Returns a NodeList of all immediate children with a given tag name,
getChildrenByTagName(String, String). Method in class oracle.xml.parser.v2.XMLElement
Returns a NodeList of all immediate children with a given tag name and namespace
getColumnNumber(). Method in interface org.xml.sax.Locator
Return the column number where the current document event ends.
getColumnNumber(). Method in class org.xml.sax.helpers.LocatorImpl
Return the saved column number (1-based).
getColumnNumber(). Method in class org.xml.sax.SAXParseException
The column number of the end of the text where the exception occurred.
getColumnNumber(). Method in class oracle.xml.parser.v2.XMLNode
Get column number debug information
getColumnNumber(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the column number of error at specified index
getContentElements(). Method in class oracle.xml.parser.v2.ElementDecl
Returns Vector of elements that can be appended to this element
getContentType(). Method in class oracle.xml.parser.v2.ElementDecl
Returns content model of element
getData(). Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
getData(). Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
getDebugMode(). Method in class oracle.xml.parser.v2.XMLNode
Get debug information mode
getDefaultValue(). Method in class oracle.xml.parser.v2.AttrDecl
Gets attribute default value
getDoctype(). Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDoctype(). Method in class oracle.xml.parser.v2.DOMParser
Get the DTD
getDoctype(). Method in class oracle.xml.parser.v2.XMLDocument
The Document Type Declaration (DTD) associated with this document.
getDocument(). Method in class oracle.xml.parser.v2.DOMParser
Gets the document
getDocumentElement(). Method in interface org.w3c.dom.Document
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
getDocumentElement(). Method in class oracle.xml.parser.v2.XMLDocument
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
getElementDecls(). Method in class oracle.xml.parser.v2.DTD
A NamedNodeMap containing the element declarations in the DTD.
getElementsByTagName(String). Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.
getElementsByTagName(String). Method in interface org.w3c.dom.Element
Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
getElementsByTagName(String). Method in class oracle.xml.parser.v2.XMLDocument
Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.
getElementsByTagName(String). Method in class oracle.xml.parser.v2.XMLElement
Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
getElementsByTagName(String, String). Method in class oracle.xml.parser.v2.XMLElement
Returns a NodeList of all descendant elements with a given tag name, and namespace in the order in which they would be encountered in a preorder traversal of the Element tree.
getEncoding(). Method in class org.xml.sax.InputSource
Get the character encoding for a byte stream or URI.
getEncoding(). Method in class oracle.xml.parser.v2.XMLDocument
Retrieves the character encoding information.
getEntities(). Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getEntities(). Method in class oracle.xml.parser.v2.DTD
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getEnumerationValues(). Method in class oracle.xml.parser.v2.AttrDecl
Gets attribute values
getException(). Method in class org.xml.sax.SAXException
Return the embedded exception, if any.
getException(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the exception (if exists) that occured in error at specified index
getExpandedName(). Method in interface oracle.xml.parser.v2.NSName
Get the fully resolved name for this name
getExpandedName(). Method in class oracle.xml.parser.v2.XMLAttr
Get the fully resolved Name for this attribute
getExpandedName(). Method in class oracle.xml.parser.v2.XMLElement
Get the fully resolved name for this element.
getExpandedName(int). Method in class oracle.xml.parser.v2.SAXAttrList
Get the expanded name for an attribute in the list (by position)
getFirstChild(). Method in interface org.w3c.dom.Node
The first child of this node.
getFirstChild(). Method in class oracle.xml.parser.v2.XMLNode
Gets the first child of this node.
getImplementation(). Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getImplementation(). Method in class oracle.xml.parser.v2.XMLDocument
The DOMImplementation object that handles this document.
getLastChild(). Method in interface org.w3c.dom.Node
The last child of this node.
getLastChild(). Method in class oracle.xml.parser.v2.XMLNode
Gets the last child of this node.
getLength(). Method in interface org.xml.sax.AttributeList
Return the number of attributes in this list.
getLength(). Method in class org.xml.sax.helpers.AttributeListImpl
Return the number of attributes in the list.
getLength(). Method in interface org.w3c.dom.CharacterData
The number of characters that are available through data and the substringData method below.
getLength(). Method in interface org.w3c.dom.NamedNodeMap
The number of nodes in the map.
getLength(). Method in interface org.w3c.dom.NodeList
The number of nodes in the list.
getLength(). Method in class oracle.xml.parser.v2.SAXAttrList
Return the number of attributes in this list.
getLineNumber(). Method in interface org.xml.sax.Locator
Return the line number where the current document event ends.
getLineNumber(). Method in class org.xml.sax.helpers.LocatorImpl
Return the saved line number (1-based).
getLineNumber(). Method in class org.xml.sax.SAXParseException
The line number of the end of the text where the exception occurred.
getLineNumber(). Method in class oracle.xml.parser.v2.XMLNode
Get line number debug information
getLineNumber(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the line number of error at specified index
getLocalName(). Method in interface oracle.xml.parser.v2.NSName
Get the local name for this name
getLocalName(). Method in class oracle.xml.parser.v2.XMLAttr
Get the local Name for this attribute
getLocalName(). Method in class oracle.xml.parser.v2.XMLElement
Get the local Name for this element.
getLocalName(int). Method in class oracle.xml.parser.v2.SAXAttrList
Get the local name for an attribute in the list (by position)
getMessage(). Method in class org.xml.sax.SAXException
Return a detail message for this exception.
getMessage(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the error message at specified index
getMessage0(int). Method in class oracle.xml.parser.v2.XMLError
Get error message with no arguments
getMessage1(int, String). Method in class oracle.xml.parser.v2.XMLError
Get error message with 1 arguments
getMessage2(int, String, String). Method in class oracle.xml.parser.v2.XMLError
Get error message with 2 arguments
getMessage3(int, String, String, String). Method in class oracle.xml.parser.v2.XMLError
Get error message with 3 arguments
getMessage4(int, String, String, String, String). Method in class oracle.xml.parser.v2.XMLError
Get error message with 4 arguments
getMessage5(int, String, String, String, String, String). Method in class oracle.xml.parser.v2.XMLError
Get error message with 5 arguments
getMessageType(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the type of the error message at specified index
getName(). Method in interface org.w3c.dom.Attr
Returns the name of this attribute.
getName(). Method in interface org.w3c.dom.DocumentType
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
getName(). Method in class oracle.xml.parser.v2.DTD
Gets the name of the DTD; i.e., the name immediately following the DOCTYPE keyword.
getName(). Method in class oracle.xml.parser.v2.XMLAttr
Gets the attribute name.
getName(int). Method in interface org.xml.sax.AttributeList
Return the name of an attribute in this list (by position).
getName(int). Method in class org.xml.sax.helpers.AttributeListImpl
Get the name of an attribute (by position).
getName(int). Method in class oracle.xml.parser.v2.SAXAttrList
Return the name of an attribute in this list (by position).
getNamedItem(String). Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNamespace(). Method in interface oracle.xml.parser.v2.NSName
Get the resolved Namespace for this name
getNamespace(). Method in class oracle.xml.parser.v2.XMLAttr
Get the resolved Namespace for this attribute
getNamespace(). Method in class oracle.xml.parser.v2.XMLElement
Get the resolved Namespace for this element.
getNamespace(int). Method in class oracle.xml.parser.v2.SAXAttrList
Get the resolved namespace for an attribute in the list (by position)
getNextSibling(). Method in interface org.w3c.dom.Node
The node immediately following this node.
getNextSibling(). Method in class oracle.xml.parser.v2.XMLNode
Gets The node immediately following this node.
getNodeName(). Method in interface org.w3c.dom.Node
The name of this node, depending on its type; see the table above.
getNodeName(). Method in class oracle.xml.parser.v2.XMLNode
Gets the name of this node, depending on its type
getNodeType(). Method in interface org.w3c.dom.Node
A code representing the type of the underlying object, as defined above.
getNodeType(). Method in class oracle.xml.parser.v2.XMLNode
Gets a code representing the type of the underlying object
getNodeValue(). Method in interface org.w3c.dom.Node
The value of this node, depending on its type; see the table above.
getNodeValue(). Method in class oracle.xml.parser.v2.XMLAttr
Gets the value of this node, depending on its type
getNodeValue(). Method in class oracle.xml.parser.v2.XMLNode
Gets the value of this node, depending on its type
getNodeValue(). Method in class oracle.xml.parser.v2.XMLText
Gets the value of this node, depending on its type
getNotationName(). Method in interface org.w3c.dom.Entity
For unparsed entities, the name of the notation for the entity.
getNotations(). Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the notations declared in the DTD.
getNotations(). Method in class oracle.xml.parser.v2.DTD
A NamedNodeMap containing the notations declared in the DTD.
getNumMessages(). Method in class oracle.xml.parser.v2.XMLParseException
Return the total number of errors/warnings found during parsing
getOutputEncoding(). Method in class oracle.xml.parser.v2.XSLStylesheet
Get the value of the encoding specified in xsl:output
getOutputMediaType(). Method in class oracle.xml.parser.v2.XSLStylesheet
Get the value of the media-type specified in xsl:output
getOwnerDocument(). Method in interface org.w3c.dom.Node
The Document object associated with this node.
getOwnerDocument(). Method in class oracle.xml.parser.v2.XMLDocument
The Document object associated with this node.
getOwnerDocument(). Method in class oracle.xml.parser.v2.XMLNode
Gets the Document object associated with this node.
getParentNode(). Method in interface org.w3c.dom.Node
The parent of this node.
getParentNode(). Method in class oracle.xml.parser.v2.XMLAttr
Gets the parent of this node.
getParentNode(). Method in class oracle.xml.parser.v2.XMLDocumentFragment
Gets the parent of this node
getParentNode(). Method in class oracle.xml.parser.v2.XMLNode
Gets the parent of this node.
getParseTree(). Method in class oracle.xml.parser.v2.ElementDecl
Returns the root node of Content Model Parse Tree.
getPrefix(). Method in interface oracle.xml.parser.v2.NSName
Get the prefix for this name
getPrefix(). Method in class oracle.xml.parser.v2.XMLAttr
Get the namespace prefix for this attribute
getPrefix(). Method in class oracle.xml.parser.v2.XMLElement
Get the namespace prefix for this element.
getPrefix(int). Method in class oracle.xml.parser.v2.SAXAttrList
Get the namespace prefix for an attribute in the list (by position)
getPreviousSibling(). Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPreviousSibling(). Method in class oracle.xml.parser.v2.XMLNode
Gets the node immediately preceding this node.
getPublicId(). Method in class oracle.xml.parser.v2.DTD
Gets The public identifier associated with the DTD, if specified.
getPublicId(). Method in interface org.w3c.dom.Entity
The public identifier associated with the entity, if specified.
getPublicId(). Method in class org.xml.sax.InputSource
Get the public identifier for this input source.
getPublicId(). Method in interface org.xml.sax.Locator
Return the public identifier for the current document event.
getPublicId(). Method in class org.xml.sax.helpers.LocatorImpl
Return the saved public identifier.
getPublicId(). Method in interface org.w3c.dom.Notation
The public identifier of this notation.
getPublicId(). Method in class org.xml.sax.SAXParseException
Get the public identifier of the entity where the exception occurred.
getPublicId(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the public ID of input when error at specified index occured
getQualifiedName(). Method in interface oracle.xml.parser.v2.NSName
Get the qualified name
getQualifiedName(). Method in class oracle.xml.parser.v2.XMLAttr
Gets the qualified name for this attribute
getQualifiedName(). Method in class oracle.xml.parser.v2.XMLElement
Get the qualified name for this element.
getQualifiedName(int). Method in class oracle.xml.parser.v2.SAXAttrList
Get the qualified name for an attribute in the list (by position)
getReleaseVersion(). Static method in class oracle.xml.parser.v2.XMLParser
Returns the release version of the Oracle XML Parser
getSpecified(). Method in interface org.w3c.dom.Attr
If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false.
getSpecified(). Method in class oracle.xml.parser.v2.XMLAttr
Returns true if the attribute was specified explicity in the element
getStandalone(). Method in class oracle.xml.parser.v2.XMLDocument
Retrieves the standalone information.
getSystemId(). Method in class oracle.xml.parser.v2.DTD
Gets the system identifier associated with the DTD, if specified.
getSystemId(). Method in interface org.w3c.dom.Entity
The system identifier associated with the entity, if specified.
getSystemId(). Method in class org.xml.sax.InputSource
Get the system identifier for this input source.
getSystemId(). Method in interface org.xml.sax.Locator
Return the system identifier for the current document event.
getSystemId(). Method in class org.xml.sax.helpers.LocatorImpl
Return the saved system identifier.
getSystemId(). Method in interface org.w3c.dom.Notation
The system identifier of this notation.
getSystemId(). Method in class org.xml.sax.SAXParseException
Get the system identifier of the entity where the exception occurred.
getSystemId(). Method in class oracle.xml.parser.v2.XMLNode
Get the system id of the entity contain this node
getSystemId(int). Method in class oracle.xml.parser.v2.XMLParseException
Get the system ID of input when error at specified index occured
getTagName(). Method in interface org.w3c.dom.Element
The name of the element.
getTagName(). Method in class oracle.xml.parser.v2.XMLElement
Gets the name of the element.
getTarget(). Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
getTarget(). Method in class oracle.xml.parser.v2.XMLPI
Returns the target of this PI.
getType(int). Method in interface org.xml.sax.AttributeList
Return the type of an attribute in the list (by position).
getType(int). Method in class org.xml.sax.helpers.AttributeListImpl
Get the type of an attribute (by position).
getType(int). Method in class oracle.xml.parser.v2.SAXAttrList
getType(String). Method in interface org.xml.sax.AttributeList
Return the type of an attribute in the list (by name).
getType(String). Method in class org.xml.sax.helpers.AttributeListImpl
Get the type of an attribute (by name).
getType(String). Method in class oracle.xml.parser.v2.SAXAttrList
Return the type of an attribute in the list (by name).
getValidationMode(). Method in class oracle.xml.parser.v2.XMLParser
Returns the validation mode
getValue(). Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.
getValue(). Method in class oracle.xml.parser.v2.XMLAttr
Gets the attribute value.
getValue(int). Method in interface org.xml.sax.AttributeList
Return the value of an attribute in the list (by position).
getValue(int). Method in class org.xml.sax.helpers.AttributeListImpl
Get the value of an attribute (by position).
getValue(int). Method in class oracle.xml.parser.v2.SAXAttrList
Return the value of an attribute in the list (by position).
getValue(String). Method in interface org.xml.sax.AttributeList
Return the value of an attribute in the list (by name).
getValue(String). Method in class org.xml.sax.helpers.AttributeListImpl
Get the value of an attribute (by name).
getValue(String). Method in class oracle.xml.parser.v2.SAXAttrList
Return the value of an attribute in the list (by name).
getVersion(). Method in class oracle.xml.parser.v2.XMLDocument
Retrieves the version information.

H

HandlerBase(). Constructor for class org.xml.sax.HandlerBase
hasChildNodes(). Method in class oracle.xml.parser.v2.DTD
This is a convenience method to allow easy determination of whether a node has any children.
hasChildNodes(). Method in interface org.w3c.dom.Node
This is a convenience method to allow easy determination of whether a node has any children.
hasChildNodes(). Method in class oracle.xml.parser.v2.XMLNode
This is a convenience method to allow easy determination of whether a node has any children.
hasFeature(String, String). Method in interface org.w3c.dom.DOMImplementation
Test if the DOM implementation implements a specific feature.
HIERARCHY_REQUEST_ERR. Static variable in class org.w3c.dom.DOMException

I

ID. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - ID
IDREF. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - ID reference
IDREFS. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - ID references
ignorableWhitespace(char[], int, int). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int). Method in interface org.xml.sax.DocumentHandler
Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int). Method in class org.xml.sax.HandlerBase
Receive notification of ignorable whitespace in element content.
IMPLIED. Static variable in class oracle.xml.parser.v2.AttrDecl
Attribute presence - Implied
INDEX_SIZE_ERR. Static variable in class org.w3c.dom.DOMException
InputSource(). Constructor for class org.xml.sax.InputSource
Zero-argument default constructor.
InputSource(InputStream). Constructor for class org.xml.sax.InputSource
Create a new input source with a byte stream.
InputSource(Reader). Constructor for class org.xml.sax.InputSource
Create a new input source with a character stream.
InputSource(String). Constructor for class org.xml.sax.InputSource
Create a new input source with a system identifier.
insertBefore(Node, Node). Method in interface org.w3c.dom.Node
Inserts the node newChild before the existing child node refChild.
insertBefore(Node, Node). Method in class oracle.xml.parser.v2.XMLNode
Inserts the node newChild before the existing child node refChild.
insertData(int, String). Method in interface org.w3c.dom.CharacterData
Insert a string at the specified character offset.
INUSE_ATTRIBUTE_ERR. Static variable in class org.w3c.dom.DOMException
INVALID_CHARACTER_ERR. Static variable in class org.w3c.dom.DOMException
item(int). Method in interface org.w3c.dom.NamedNodeMap
Returns the indexth item in the map.
item(int). Method in interface org.w3c.dom.NodeList
Returns the indexth item in the collection.

L

LocatorImpl(). Constructor for class org.xml.sax.helpers.LocatorImpl
Zero-argument constructor.
LocatorImpl(Locator). Constructor for class org.xml.sax.helpers.LocatorImpl
Copy constructor.

M

main(String[]). Static method in class oracle.xml.parser.v2.oraxml
main(String[]). Static method in class oracle.xml.parser.v2.oraxsl
Invokes the oraxsl driver
makeParser(). Static method in class org.xml.sax.helpers.ParserFactory
Private null constructor.
makeParser(String). Static method in class org.xml.sax.helpers.ParserFactory
Create a new SAX parser object using the class name provided.
MIXED. Static variable in class oracle.xml.parser.v2.ElementDecl
Element content type - Children can be PCDATA & elements as per Content Model

N

NMTOKEN. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - Name token
NMTOKENS. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - TokenizedType - Name tokens
NO_DATA_ALLOWED_ERR. Static variable in class org.w3c.dom.DOMException
NO_MODIFICATION_ALLOWED_ERR. Static variable in class org.w3c.dom.DOMException
NodeFactory(). Constructor for class oracle.xml.parser.v2.NodeFactory
normalize(). Method in interface org.w3c.dom.Element
Puts all Text nodes in the full depth of the sub-tree underneath this Element into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes.
normalize(). Method in class oracle.xml.parser.v2.XMLElement
Puts all Text nodes in the full depth of the sub-tree underneath this Element into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes.
NOT_FOUND_ERR. Static variable in class org.w3c.dom.DOMException
NOT_SUPPORTED_ERR. Static variable in class org.w3c.dom.DOMException
NOTATION. Static variable in class oracle.xml.parser.v2.AttrDecl
AttType - EnumeratedType - Notation
NOTATION_NODE. Static variable in interface org.w3c.dom.Node
NotationDecl. Static variable in interface oracle.xml.parser.v2.XMLToken

NotationDecl ::= '<' '!NOTATION' S Name S (ExternalID | PublicID) S? '>'

notationDecl(String, String, String). Method in interface org.xml.sax.DTDHandler
Receive notification of a notation declaration event.
notationDecl(String, String, String). Method in class org.xml.sax.HandlerBase
Receive notification of a notation declaration.

O

OR. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - "|" node (has two children)
oraxml(). Constructor for class oracle.xml.parser.v2.oraxml
oraxsl(). Constructor for class oracle.xml.parser.v2.oraxsl

P

parse(InputSource). Method in interface org.xml.sax.Parser
Parse an XML document.
parse(InputSource). Method in class oracle.xml.parser.v2.XMLParser
Parses the XML from given input source
parse(InputStream). Method in class oracle.xml.parser.v2.XMLParser
Parses the XML from given input stream.
parse(Reader). Method in class oracle.xml.parser.v2.XMLParser
Parses the XML from given input stream.
parse(String). Method in interface org.xml.sax.Parser
Parse an XML document from a system identifier (URI).
parse(String). Method in class oracle.xml.parser.v2.XMLParser
Parses the XML from the URL indicated
parse(URL). Method in class oracle.xml.parser.v2.XMLParser
Parses the XML document pointed to by the given URL and creates the corresponding XML document hierarchy.
parseDocument(). Method in class oracle.xml.parser.v2.XMLTokenizer
Document ::= Prolog Element Misc*
parseDTD(InputSource, String). Method in class oracle.xml.parser.v2.DOMParser
Parses the XML External DTD from given input source
parseDTD(InputStream, String). Method in class oracle.xml.parser.v2.DOMParser
Parses the XML External DTD from given input stream.
parseDTD(Reader, String). Method in class oracle.xml.parser.v2.DOMParser
Parses the XML External DTD from given input stream.
parseDTD(String, String). Method in class oracle.xml.parser.v2.DOMParser
Parses the XML External DTD from the URL indicated
parseDTD(URL, String). Method in class oracle.xml.parser.v2.DOMParser
Parses the XML External DTD document pointed to by the given URL and creates the corresponding XML document hierarchy.
ParserFactory(). Constructor for class org.xml.sax.helpers.ParserFactory
PI. Static variable in interface oracle.xml.parser.v2.XMLToken

PI ::= '<' '?' PITarget (S (Char* - (Char* '?>' Char*)))? '?' '>'

PITarget. Static variable in interface oracle.xml.parser.v2.XMLToken

PITarget ::= Name - (('X' | 'x') ('M' | 'm') ('L' | 'l'))

PLUS. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - "+" node (has one children)
print(OutputStream). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of this document to the given output stream.
print(OutputStream). Method in class oracle.xml.parser.v2.XMLNode
Writes the contents of this node to the given output stream.
print(OutputStream, String). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of this document to the given output stream.
print(OutputStream, String). Method in class oracle.xml.parser.v2.XMLNode
Writes the contents of this node to the given output stream.
print(PrintWriter). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of this document to the given output stream.
print(PrintWriter). Method in class oracle.xml.parser.v2.XMLNode
Writes the contents of this node using the given print writer.
printExternalDTD(OutputStream). Method in class oracle.xml.parser.v2.DTD
Writes the contents of this document to the given output stream.
printExternalDTD(OutputStream). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of this document to the given output stream.
printExternalDTD(OutputStream, String). Method in class oracle.xml.parser.v2.DTD
Writes the contents of the external DTD to the given output stream.
printExternalDTD(OutputStream, String). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of the external DTD to the given output stream.
printExternalDTD(PrintWriter). Method in class oracle.xml.parser.v2.DTD
Writes the contents of this document to the given output stream.
printExternalDTD(PrintWriter). Method in class oracle.xml.parser.v2.XMLDocument
Writes the contents of this document to the given output stream.
PROCESSING_INSTRUCTION_NODE. Static variable in interface org.w3c.dom.Node
processingInstruction(String, String). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of a processing instruction.
processingInstruction(String, String). Method in interface org.xml.sax.DocumentHandler
Receive notification of a processing instruction.
processingInstruction(String, String). Method in class org.xml.sax.HandlerBase
Receive notification of a processing instruction.
processXSL(XSLStylesheet, InputStream, URL). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given InputStream and stylesheet.
processXSL(XSLStylesheet, Reader, URL). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given Reader and stylesheet.
processXSL(XSLStylesheet, URL, URL). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given URL and stylesheet.
processXSL(XSLStylesheet, XMLDocument). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given XMLDocument and stylesheet.
processXSL(XSLStylesheet, XMLDocument, OutputStream). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given XMLDocument and stylesheet.
processXSL(XSLStylesheet, XMLDocument, PrintWriter). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given XMLDocument and stylesheet.
processXSL(XSLStylesheet, XMLDocumentFragment). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML document using given XMLDocument and stylesheet.
processXSL(XSLStylesheet, XMLDocumentFragment, OutputStream). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML using given XMLDocumentFragment and stylesheet.
processXSL(XSLStylesheet, XMLDocumentFragment, PrintWriter). Method in class oracle.xml.parser.v2.XSLProcessor
Transform input XML using given XMLDocumentFragment and stylesheet.

Q

QMARK. Static variable in class oracle.xml.parser.v2.ElementDecl
ContentModelParseTreeNode type - "?" node (has one children)

R

Reference. Static variable in interface oracle.xml.parser.v2.XMLToken

Reference ::= EntityRef | CharRef | PEReference

EntityRef ::= '&' Name ';'

PEReference ::= '%' Name ';'

CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';

removeAttribute(String). Method in class org.xml.sax.helpers.AttributeListImpl
Remove an attribute from the list.
removeAttribute(String). Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttribute(String). Method in class oracle.xml.parser.v2.XMLElement
Removes an attribute by name.
removeAttributeNode(Attr). Method in interface org.w3c.dom.Element
Removes the specified attribute.
removeAttributeNode(Attr). Method in class oracle.xml.parser.v2.XMLElement
Removes the specified attribute.
removeChild(Node). Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeChild(Node). Method in class oracle.xml.parser.v2.XMLNode
Removes the child node indicated by oldChild from the list of children, and returns it.
removeNamedItem(String). Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeParam(String). Method in class oracle.xml.parser.v2.XSLStylesheet
Removes the value of a top-level stylesheet parameter.
replaceChild(Node, Node). Method in interface org.w3c.dom.Node
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceChild(Node, Node). Method in class oracle.xml.parser.v2.XMLDocument
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceChild(Node, Node). Method in class oracle.xml.parser.v2.XMLNode
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceData(int, int, String). Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified character offset with the specified string.
REQUIRED. Static variable in class oracle.xml.parser.v2.AttrDecl
Attribute presence - Required
resetParams(). Method in class oracle.xml.parser.v2.XSLStylesheet
Resets all the params set.
resolveEntity(String, String). Method in interface org.xml.sax.EntityResolver
Allow the application to resolve external entities.
resolveEntity(String, String). Method in class org.xml.sax.HandlerBase
Resolve an external entity.
resolveNamespacePrefix(String). Method in interface oracle.xml.parser.v2.NSResolver
Find the namespace definition in scope for a given namespace prefix
resolveNamespacePrefix(String). Method in class oracle.xml.parser.v2.XMLElement
Given a namespace prefix, find the namespace definition in scope in this element.

S

SAXException(Exception). Constructor for class org.xml.sax.SAXException
Create a new SAXException wrapping an existing exception.
SAXException(String). Constructor for class org.xml.sax.SAXException
Create a new SAXException.
SAXException(String, Exception). Constructor for class org.xml.sax.SAXException
Create a new SAXException from an existing exception.
SAXParseException(String, Locator). Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException from a message and a Locator.
SAXParseException(String, Locator, Exception). Constructor for class org.xml.sax.SAXParseException
Wrap an existing exception in a SAXParseException.
SAXParseException(String, String, String, int, int). Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException.
SAXParseException(String, String, String, int, int, Exception). Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException with an embedded exception.
SAXParser(). Constructor for class oracle.xml.parser.v2.SAXParser
Creates a new parser object.
selectNodes(String). Method in class oracle.xml.parser.v2.XMLNode
Selects nodes from the tree which match the given pattern.
selectNodes(String, NSResolver). Method in class oracle.xml.parser.v2.XMLNode
Selects nodes from the tree which match the given pattern
selectSingleNode(String). Method in class oracle.xml.parser.v2.XMLNode
Selects the first node from the tree that matches the given pattern
selectSingleNode(String, NSResolver). Method in class oracle.xml.parser.v2.XMLNode
Selects the first node from the tree that matches the given pattern
setAttribute(String, String). Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttribute(String, String). Method in class oracle.xml.parser.v2.XMLElement
Adds a new attribute.
setAttributeList(AttributeList). Method in class org.xml.sax.helpers.AttributeListImpl
Set the attribute list, discarding previous contents.
setAttributeNode(Attr). Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNode(Attr). Method in class oracle.xml.parser.v2.XMLElement
Adds a new attribute.
setBaseURL(URL). Method in class oracle.xml.parser.v2.XMLParser
Set the base URL for loading external enitites and DTDs.
setByteStream(InputStream). Method in class org.xml.sax.InputSource
Set the byte stream for this input source.
setCharacterStream(Reader). Method in class org.xml.sax.InputSource
Set the character stream for this input source.
setColumnNumber(int). Method in class org.xml.sax.helpers.LocatorImpl
Set the column number for this locator (1-based).
setData(String). Method in interface org.w3c.dom.CharacterData
setData(String). Method in interface org.w3c.dom.ProcessingInstruction
setDebugInfo(int, int, String). Method in class oracle.xml.parser.v2.XMLNode
Set debug information in the node
setDebugMode(boolean). Method in class oracle.xml.parser.v2.DOMParser
Sets a flag to turn on debug information in the document
setDoctype(DTD). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of DTD.
setDoctype(DTD). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of a DTD (Document Type node).
setDoctype(DTD). Method in class oracle.xml.parser.v2.XMLParser
Set the DTD
setDoctype(String, String, String). Method in class oracle.xml.parser.v2.XMLDocument
Sets the doctype URI for the document
setDocumentHandler(DocumentHandler). Method in interface org.xml.sax.Parser
Allow an application to register a document event handler.
setDocumentHandler(DocumentHandler). Method in class oracle.xml.parser.v2.SAXParser
SAX applications can use this to register a new document event handler.
setDocumentLocator(Locator). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive a Locator object for document events.
setDocumentLocator(Locator). Method in interface org.xml.sax.DocumentHandler
Receive an object for locating the origin of SAX document events.
setDocumentLocator(Locator). Method in class org.xml.sax.HandlerBase
Receive a Locator object for document events.
setDTDHandler(DTDHandler). Method in interface org.xml.sax.Parser
Allow an application to register a DTD event handler.
setDTDHandler(DTDHandler). Method in class oracle.xml.parser.v2.SAXParser
SAX applications can use this to register a new DTD event handler.
setEncoding(String). Method in class org.xml.sax.InputSource
Set the character encoding, if known.
setEncoding(String). Method in class oracle.xml.parser.v2.XMLDocument
Sets the character encoding for output.
setEntityResolver(EntityResolver). Method in interface org.xml.sax.Parser
Allow an application to register a custom entity resolver.
setEntityResolver(EntityResolver). Method in class oracle.xml.parser.v2.SAXParser
SAX applications can use this to register a new entity resolver
setErrorHandler(ErrorHandler). Method in interface org.xml.sax.Parser
Allow an application to register an error event handler.
setErrorHandler(ErrorHandler). Method in class oracle.xml.parser.v2.SAXParser
SAX applications can use this to register a new error event handler.
setErrorHandler(ErrorHandler). Method in class oracle.xml.parser.v2.XMLTokenizer
Applications can use this to register a new error event handler.
setErrorStream(OutputStream). Method in class oracle.xml.parser.v2.DOMParser
Creates an output stream for the output of errors and warnings.
setErrorStream(OutputStream). Method in class oracle.xml.parser.v2.XMLTokenizer
Register a output stream for errors
setErrorStream(OutputStream). Method in class oracle.xml.parser.v2.XSLProcessor
Creates an output stream for the output of warnings.
setErrorStream(OutputStream, String). Method in class oracle.xml.parser.v2.DOMParser
Creates an output stream for the output of errors and warnings.
setErrorStream(PrintWriter). Method in class oracle.xml.parser.v2.DOMParser
Creates an output stream for the output of errors and warnings.
setLineNumber(int). Method in class org.xml.sax.helpers.LocatorImpl
Set the line number for this locator (1-based).
setLocale(Locale). Method in interface org.xml.sax.Parser
Allow an application to request a locale for errors and warnings.
setLocale(Locale). Method in class oracle.xml.parser.v2.XMLDocument
Sets the locale for error reporting
setLocale(Locale). Method in class oracle.xml.parser.v2.XMLError
Register a locale
setLocale(Locale). Method in class oracle.xml.parser.v2.XMLParser
Applications can use this to set the locale for error reporting.
setLocale(Locale). Method in class oracle.xml.parser.v2.XSLProcessor
Applications can use this to set the locale for error reporting.
setNamedItem(Node). Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNodeFactory(NodeFactory). Method in class oracle.xml.parser.v2.DOMParser
Set the node factory.
setNodeValue(String). Method in interface org.w3c.dom.Node
setNodeValue(String). Method in class oracle.xml.parser.v2.XMLAttr
Sets the value of this node, depending on its type
setNodeValue(String). Method in class oracle.xml.parser.v2.XMLNode
Sets the value of this node, depending on its type
setParam(String, String). Method in class oracle.xml.parser.v2.XSLStylesheet
Sets the value of a top-level stylesheet parameter.
setPreserveWhitespace(boolean). Method in class oracle.xml.parser.v2.XMLParser
Set the white space preserving mode
setPublicId(String). Method in class org.xml.sax.InputSource
Set the public identifier for this input source.
setPublicId(String). Method in class org.xml.sax.helpers.LocatorImpl
Set the public identifier for this locator.
setSchemaValidationMode(boolean). Method in class oracle.xml.parser.v2.XMLParser
Set the schema validation mode
setStandalone(String). Method in class oracle.xml.parser.v2.XMLDocument
Sets the standalone information stored in the <?xml ...?> tag.
setSystemId(String). Method in class org.xml.sax.InputSource
Set the system identifier for this input source.
setSystemId(String). Method in class org.xml.sax.helpers.LocatorImpl
Set the system identifier for this locator.
setTextDecl(String, String). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of a Text XML Declaration.
setTextDecl(String, String). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of a Text XML Declaration.
setToken(int, boolean). Method in class oracle.xml.parser.v2.XMLTokenizer
Applications can use this to register a new token for XML tokenizer.
setTokenHandler(XMLToken). Method in class oracle.xml.parser.v2.XMLTokenizer
Applications can use this to register a new XML tokenizer event handler.
setValidationMode(boolean). Method in class oracle.xml.parser.v2.XMLParser
Set the validation mode
setValue(String). Method in interface org.w3c.dom.Attr
setValue(String). Method in class oracle.xml.parser.v2.XMLAttr
Sets the value.
setVersion(String). Method in class oracle.xml.parser.v2.XMLDocument
Sets the version number stored in the <?xml ...?> tag.
setXMLDecl(String, String, String). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of an XML Declaration.
setXMLDecl(String, String, String). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of a XML Declaration.
showWarnings(boolean). Method in class oracle.xml.parser.v2.DOMParser
Switch to determine whether to print warnings
showWarnings(boolean). Method in class oracle.xml.parser.v2.XSLProcessor
Switch to determine whether to output warnings.
splitText(int). Method in interface org.w3c.dom.Text
Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
splitText(int). Method in class oracle.xml.parser.v2.XMLText
Breaks Text node into two Text nodes at specified offset, so they are both siblings, and the node only contains content up to the offset.
STag. Static variable in interface oracle.xml.parser.v2.XMLToken

STag ::= '<' STagName (S Attribute)* S? '>'

STagName. Static variable in interface oracle.xml.parser.v2.XMLToken

STagName ::= Name

startDocument(). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the beginning of the document.
startDocument(). Method in interface org.xml.sax.DocumentHandler
Receive notification of the beginning of a document.
startDocument(). Method in class org.xml.sax.HandlerBase
Receive notification of the beginning of the document.
startElement(NSName, SAXAttrList). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the beginning of an element.
startElement(NSName, SAXAttrList). Method in interface oracle.xml.parser.v2.XMLDocumentHandler
Receive notification of the beginning of an element.
startElement(String, AttributeList). Method in class oracle.xml.parser.v2.DefaultXMLDocumentHandler
Receive notification of the start of an element.
startElement(String, AttributeList). Method in interface org.xml.sax.DocumentHandler
Receive notification of the beginning of an element.
startElement(String, AttributeList). Method in class org.xml.sax.HandlerBase
Receive notification of the start of an element.
substringData(int, int). Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.

T

TEXT_NODE. Static variable in interface org.w3c.dom.Node
TextDecl. Static variable in interface oracle.xml.parser.v2.XMLToken

TextDecl ::= '<' '?' 'xml' VersionInfo? EncodingDecl S? '?>'

token(int, String). Method in interface oracle.xml.parser.v2.XMLToken
The interface call-back method.
tokenize(InputSource). Method in class oracle.xml.parser.v2.XMLTokenizer
Tokenizes the XML from given input source
tokenize(InputStream). Method in class oracle.xml.parser.v2.XMLTokenizer
Tokenizes the XML from given input stream.
tokenize(Reader). Method in class oracle.xml.parser.v2.XMLTokenizer
Tokenizes the XML from given input stream.
tokenize(String). Method in class oracle.xml.parser.v2.XMLTokenizer
Tokenizes the XML from the URL indicated
tokenize(URL). Method in class oracle.xml.parser.v2.XMLTokenizer
Tokenizes the XML document pointed to by the given URL and creates the corresponding XML document hierarchy.
toString(). Method in class org.xml.sax.SAXException
Convert this exception to a string.
transformNode(XSLStylesheet). Method in class oracle.xml.parser.v2.XMLNode
Transforms a node in the tree using the given stylesheet

U

unparsedEntityDecl(String, String, String, String). Method in interface org.xml.sax.DTDHandler
Receive notification of an unparsed entity declaration event.
unparsedEntityDecl(String, String, String, String). Method in class org.xml.sax.HandlerBase
Receive notification of an unparsed entity declaration.

V

validateContent(Element). Method in class oracle.xml.parser.v2.ElementDecl
Validates the content of a element node.
validateElementContent(Element). Method in class oracle.xml.parser.v2.XMLDocument
Validates the content of a element node.
valueOf(String). Method in class oracle.xml.parser.v2.XMLNode
Selects the value of the first node from the tree that matches the given pattern
valueOf(String, NSResolver). Method in class oracle.xml.parser.v2.XMLNode
Selects the value of the first node from the tree that matches the given pattern

W

WARNING. Static variable in class oracle.xml.parser.v2.XMLParseException
Code for warning
warning(SAXParseException). Method in interface org.xml.sax.ErrorHandler
Receive notification of a warning.
warning(SAXParseException). Method in class org.xml.sax.HandlerBase
Receive notification of a parser warning.
WRONG_DOCUMENT_ERR. Static variable in class org.w3c.dom.DOMException

X

XMLAttr(String, String). Constructor for class oracle.xml.parser.v2.XMLAttr
Construct attribute with given name and value.
XMLAttr(String, String, String, String). Constructor for class oracle.xml.parser.v2.XMLAttr
Namespace support
XMLCDATA(String). Constructor for class oracle.xml.parser.v2.XMLCDATA
Creates a CDATA node having the given name and text.
XMLComment(String). Constructor for class oracle.xml.parser.v2.XMLComment
Creates a new Comment node.
XMLDecl. Static variable in interface oracle.xml.parser.v2.XMLToken

XMLDecl ::= '<' '?' 'xml' VersionInfo EncodingDecl? SDDecl? S? '?' '>'

XMLDocument(). Constructor for class oracle.xml.parser.v2.XMLDocument
Creates an empty document.
XMLDocumentFragment(). Constructor for class oracle.xml.parser.v2.XMLDocumentFragment
Creates an empty document fragment
XMLElement(String). Constructor for class oracle.xml.parser.v2.XMLElement
Creates an element with the given name
XMLElement(String, boolean). Constructor for class oracle.xml.parser.v2.XMLElement
Creates an element with the given name
XMLElement(String, String, String). Constructor for class oracle.xml.parser.v2.XMLElement
Creates an element with the given name, prefix, and namespace
XMLEntityReference(String). Constructor for class oracle.xml.parser.v2.XMLEntityReference
XMLError(). Constructor for class oracle.xml.parser.v2.XMLError
Default constructor
XMLParseException(String, String, String, int, int, int). Constructor for class oracle.xml.parser.v2.XMLParseException
XMLPI(String, String). Constructor for class oracle.xml.parser.v2.XMLPI
Creates a new ProcessingInstruction node with the given target and the data.
XMLText(String). Constructor for class oracle.xml.parser.v2.XMLText
XMLTokenizer(). Constructor for class oracle.xml.parser.v2.XMLTokenizer
Creates a new Tokenizer object.
XMLTokenizer(XMLToken). Constructor for class oracle.xml.parser.v2.XMLTokenizer
Creates a new Tokenizer object.
XSLProcessor(). Constructor for class oracle.xml.parser.v2.XSLProcessor
XSLStylesheet(). Constructor for class oracle.xml.parser.v2.XSLStylesheet
Constructs an empty XSLStylesheet
XSLStylesheet(InputStream, URL). Constructor for class oracle.xml.parser.v2.XSLStylesheet
Constructs an XSLStylesheet using the given Inputstream
XSLStylesheet(Reader, URL). Constructor for class oracle.xml.parser.v2.XSLStylesheet
Constructs an XSLStylesheet using the given Reader
XSLStylesheet(URL, URL). Constructor for class oracle.xml.parser.v2.XSLStylesheet
Constructs an XSLStylesheet using the given URL
XSLStylesheet(XMLDocument, URL). Constructor for class oracle.xml.parser.v2.XSLStylesheet
Constructs an XSLStylesheet using the given XMLDocument