Package org.apache.xml.serializer.dom3
Class NamespaceSupport.Prefixes
java.lang.Object
org.apache.xml.serializer.dom3.NamespaceSupport.Prefixes
- All Implemented Interfaces:
Enumeration
- Enclosing class:
- NamespaceSupport
protected final class NamespaceSupport.Prefixes extends Object implements Enumeration
-
Constructor Summary
-
Method Summary
Modifier and Type Method Description booleanhasMoreElements()Returns whether thisEnumerationhas more elements.ObjectnextElement()Returns the next element in thisEnumeration.StringtoString()Returns a string containing a concise, human-readable description of this object.
-
Constructor Details
-
Prefixes
Constructor for Prefixes.
-
-
Method Details
-
hasMoreElements
public boolean hasMoreElements()Description copied from interface:EnumerationReturns whether thisEnumerationhas more elements.- Specified by:
hasMoreElementsin interfaceEnumeration- Returns:
trueif there are more elements,falseotherwise.- See Also:
Enumeration.hasMoreElements()
-
nextElement
Description copied from interface:EnumerationReturns the next element in thisEnumeration.- Specified by:
nextElementin interfaceEnumeration- Returns:
- the next element..
- See Also:
Enumeration.nextElement()
-
toString
Description copied from class:ObjectReturns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toStringmethod if you intend implementing your owntoStringmethod.
-