- All Superinterfaces:
- Attribute,- XMLEvent,- XMLStreamConstants
public interface Namespace extends Attribute
An interface that contains information about a namespace.
 Namespaces are accessed from a StartElement.
- Since:
- 1.6
- See Also:
- StartElement
- 
Field SummaryFields declared in interface javax.xml.stream.XMLStreamConstantsATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
- 
Method SummaryModifier and Type Method Description StringgetNamespaceURI()Gets the uri bound to the prefix of this namespaceStringgetPrefix()Gets the prefix, returns "" if this is a default namespace declaration.booleanisDefaultNamespaceDeclaration()returns true if this attribute declares the default namespaceMethods declared in interface javax.xml.stream.events.AttributegetDTDType, getName, getValue, isSpecifiedMethods declared in interface javax.xml.stream.events.XMLEventasCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
- 
Method Details- 
getPrefixString getPrefix()Gets the prefix, returns "" if this is a default namespace declaration.
- 
getNamespaceURIString getNamespaceURI()Gets the uri bound to the prefix of this namespace
- 
isDefaultNamespaceDeclarationboolean isDefaultNamespaceDeclaration()returns true if this attribute declares the default namespace
 
-