All Packages Class Hierarchy This Package Previous Next Index
Interface oracle.xml.parser.NSAttributeList
- public interface NSAttributeList
- extends AttributeList
This interface extends the SAX AttributeList
interface to
provide Namespace support. Applications that require Namespace support can
explicitly cast any attribute list returned by an Oracle parser
class to NSAttributeList
and use the methods described here.
-
getExpandedName(int)
- Get the fully resolved name of the attribute at index
-
getLocalName(int)
- Get the local name for the attribute at index
-
getNamespace(int)
- Get the resolved Namespace of the attribute at index
-
getQualifiedName(int)
- Get the qualified name of the attribute at index
getQualifiedName
public abstract String getQualifiedName(int i)
- Get the qualified name of the attribute at index
- Parameters:
- i - Index of the attribute
- Returns:
- The qualified name
getNamespace
public abstract String getNamespace(int i)
- Get the resolved Namespace of the attribute at index
- Parameters:
- i - Index of the attribute
- Returns:
- The resolved Namespace
getLocalName
public abstract String getLocalName(int i)
- Get the local name for the attribute at index
- Parameters:
- i - Index of the attribute
- Returns:
- The local name
getExpandedName
public abstract String getExpandedName(int i)
- Get the fully resolved name of the attribute at index
- Parameters:
- i - Index of the attribute
- Returns:
- The fully resolved name
All Packages Class Hierarchy This Package Previous Next Index