|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.catalina.util.Enumerator<T>
@Deprecated public final class Enumerator<T>
Adapter class that wraps an Enumeration
around a Java2
collection classes object Iterator
so that existing APIs
returning Enumerations can easily run on top of the new collections.
Constructors are provided to easily create such wrappers.
Constructor Summary | |
---|---|
Enumerator(Collection<T> collection)
Deprecated. Return an Enumeration over the values of the specified Collection. |
|
Enumerator(Collection<T> collection,
boolean clone)
Deprecated. Return an Enumeration over the values of the specified Collection. |
|
Enumerator(Iterator<T> iterator)
Deprecated. Return an Enumeration over the values returned by the specified Iterator. |
|
Enumerator(Iterator<T> iterator,
boolean clone)
Deprecated. Return an Enumeration over the values returned by the specified Iterator. |
|
Enumerator(Map<?,T> map)
Deprecated. Return an Enumeration over the values of the specified Map. |
|
Enumerator(Map<?,T> map,
boolean clone)
Deprecated. Return an Enumeration over the values of the specified Map. |
Method Summary | |
---|---|
boolean |
hasMoreElements()
Deprecated. Tests if this enumeration contains more elements. |
T |
nextElement()
Deprecated. 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<T> collection)
collection
- Collection whose values should be enumeratedpublic Enumerator(Collection<T> collection, boolean clone)
collection
- Collection whose values should be enumeratedclone
- true to clone iteratorpublic Enumerator(Iterator<T> iterator)
iterator
- Iterator to be wrappedpublic Enumerator(Iterator<T> iterator, boolean clone)
iterator
- Iterator to be wrappedclone
- true to clone iteratorpublic Enumerator(Map<?,T> map)
map
- Map whose values should be enumeratedpublic Enumerator(Map<?,T> map, boolean clone)
map
- Map whose values should be enumeratedclone
- true to clone iteratorMethod Detail |
---|
public boolean hasMoreElements()
hasMoreElements
in interface Enumeration<T>
true
if and only if this enumeration object
contains at least one more element to provide, false
otherwisepublic T nextElement() throws NoSuchElementException
nextElement
in interface Enumeration<T>
NoSuchElementException
- if no more elements exist
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |