All Packages Class Hierarchy This Package Previous Next Index
Interface oracle.xml.parser.NSElement
- public interface NSElement
- extends Element
This interface extends the DOM Element
interface to
provide Namespace support. Applications that require Namespace support can
explicitly cast any element returned by an Oracle parser class to
NSElement
and use the methods described here.
-
getExpandedName()
- Get the fully resolved name for this element
-
getLocalName()
- Get the local name for this element
-
getNamespace()
- Get the resolved Namespace for this element
-
getQualifiedName()
- Get the qualified element name
getQualifiedName
public abstract String getQualifiedName()
- Get the qualified element name
- Returns:
- The qualified name
getNamespace
public abstract String getNamespace()
- Get the resolved Namespace for this element
- Returns:
- The resolved Namespace
getLocalName
public abstract String getLocalName()
- Get the local name for this element
- Returns:
- The local name
getExpandedName
public abstract String getExpandedName()
- Get the fully resolved name for this element
- Returns:
- The fully resolved name
All Packages Class Hierarchy This Package Previous Next Index