|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.security.ui.savedrequest.Enumerator
public class Enumerator
Adapter that wraps an Enumeration
around a Java 2 collection Iterator
.
Constructors are provided to easily create such wrappers.
This class is based on code in Apache Tomcat.
Constructor Summary | |
---|---|
Enumerator(Collection collection)
Return an Enumeration over the values of the specified Collection. |
|
Enumerator(Collection collection,
boolean clone)
Return an Enumeration over the values of the specified Collection. |
|
Enumerator(Iterator iterator)
Return an Enumeration over the values returned by the specified Iterator. |
|
Enumerator(Iterator iterator,
boolean clone)
Return an Enumeration over the values returned by the specified Iterator. |
|
Enumerator(Map map)
Return an Enumeration over the values of the specified Map. |
|
Enumerator(Map map,
boolean clone)
Return an Enumeration over the values of the specified Map. |
Method Summary | |
---|---|
boolean |
hasMoreElements()
Tests if this enumeration contains more elements. |
Object |
nextElement()
Returns the next element of this enumeration if this enumeration has at least one more element to provide. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Enumerator(Collection collection)
collection
- Collection whose values should be enumeratedpublic Enumerator(Collection collection, boolean clone)
collection
- Collection whose values should be enumeratedclone
- true to clone iteratorpublic Enumerator(Iterator iterator)
iterator
- Iterator to be wrappedpublic Enumerator(Iterator iterator, boolean clone)
iterator
- Iterator to be wrappedclone
- true to clone iteratorpublic Enumerator(Map map)
map
- Map whose values should be enumeratedpublic Enumerator(Map map, boolean clone)
map
- Map whose values should be enumeratedclone
- true to clone iteratorMethod Detail |
---|
public boolean hasMoreElements()
hasMoreElements
in interface Enumeration
true
if and only if this enumeration object contains at least one more element to provide,
false
otherwisepublic Object nextElement() throws NoSuchElementException
nextElement
in interface Enumeration
NoSuchElementException
- if no more elements exist
|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |