Package com.tangosol.run.xml
Class SimpleElement.ElementIterator
- java.lang.Object
-
- com.tangosol.run.xml.SimpleElement.ElementIterator
-
- All Implemented Interfaces:
Iterator
- Enclosing class:
- SimpleElement
protected class SimpleElement.ElementIterator extends Object implements Iterator
Provides an Iterator implementation that exposes only those Elements from the Element list that match a certain name.
-
-
Field Summary
Fields Modifier and Type Field Description protected static int
FOUND
protected XmlElement
m_element
protected Iterator
m_iterator
protected int
m_nState
protected String
m_sName
protected static int
REMOVED
protected static int
RETURNED
-
Constructor Summary
Constructors Constructor Description ElementIterator(String sName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Object
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Field Detail
-
m_sName
protected String m_sName
-
m_iterator
protected Iterator m_iterator
-
m_element
protected XmlElement m_element
-
m_nState
protected int m_nState
-
FOUND
protected static final int FOUND
- See Also:
- Constant Field Values
-
RETURNED
protected static final int RETURNED
- See Also:
- Constant Field Values
-
REMOVED
protected static final int REMOVED
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ElementIterator
public ElementIterator(String sName)
-
-