Top Description Fields Constructors Methods
com.sun.org.apache.xerces.internal.util

public Class XMLAttributesIteratorImpl

extends XMLAttributesImpl
implements Iterator<XMLAttributesImpl.Attribute>
Class Inheritance
All Implemented Interfaces
java.util.Iterator
Imports
java.util.Iterator, .NoSuchElementException

Its better to extend the functionality of existing XMLAttributesImpl and also make it of type Iterator. We can directly give an object of type iterator from StartElement event. We should also have Attribute object of type javax.xml.stream.Attribute internally. It would avoid the need of creating new javax.xml.stream.Attribute object at the later stage. Should we change XMLAttributes interface to implement Iteraotr ? I think its better avoid touching XNI as much as possible. - NB.

Field Summary

Modifier and TypeField and Description
protected int
protected XMLAttributesImpl.Attribute
Inherited from com.sun.org.apache.xerces.internal.util.XMLAttributesImpl:
fAttributesfAttributeTableViewfAttributeTableViewChainStatefHashMultipliersfIsTableViewConsistentfLargeCountfLengthfNamespacesfTableViewBucketsMAX_HASH_COLLISIONSMULTIPLIERS_MASKMULTIPLIERS_SIZESIZE_LIMITTABLE_SIZE

Constructor Summary

AccessConstructor and Description
public
XMLAttributesIteratorImpl()

Creates a new instance of XMLAttributesIteratorImpl

Method Summary

Modifier and TypeMethod and Description
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public XMLAttributesImpl.Attribute
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.

public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

public void
Inherited from com.sun.org.apache.xerces.internal.util.XMLAttributesImpl:
addAttributeaddAttributeaddAttributeNScheckDuplicatesNScleanTableViewgetAugmentationsgetAugmentationsgetAugmentationsgetIndexgetIndexgetIndexByLocalNamegetIndexFastgetIndexFastgetLengthgetLocalNamegetNamegetNamegetNonNormalizedValuegetPrefixgetQNamegetQualifiedNamegetTableViewBucketgetTableViewBucketgetTypegetTypegetTypegetURIgetValuegetValuegetValueisSpecifiedprepareAndPopulateTableViewprepareTableViewrefreshrefreshremoveAttributeAtsetAugmentationssetNamesetNamespacessetNonNormalizedValuesetSpecifiedsetTypesetURIsetValuesetValue

Field Detail

fCurrentback to summary
protected int fCurrent
fLastReturnedItemback to summary
protected XMLAttributesImpl.Attribute fLastReturnedItem

Constructor Detail

XMLAttributesIteratorImplback to summary
public XMLAttributesIteratorImpl()

Creates a new instance of XMLAttributesIteratorImpl

Method Detail

hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

nextback to summary
public XMLAttributesImpl.Attribute next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:XMLAttributesImpl.Attribute

the next element in the iteration

removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.

removeAllAttributesback to summary
public void removeAllAttributes()

Overrides com.sun.org.apache.xerces.internal.util.XMLAttributesImpl.removeAllAttributes.

Implements com.sun.org.apache.xerces.internal.xni.XMLAttributes.removeAllAttributes.

Doc from com.sun.org.apache.xerces.internal.util.XMLAttributesImpl.removeAllAttributes.

Removes all of the attributes. This method will also remove all entities associated to the attributes.