Class CompoundEnumeration<E>
- java.lang.Object
-
- org.nuxeo.ecm.webengine.jaxrs.servlet.CompoundEnumeration<E>
-
- All Implemented Interfaces:
Enumeration<E>
public class CompoundEnumeration<E> extends Object implements Enumeration<E>
- Author:
- Bogdan Stefanescu
-
-
Constructor Summary
Constructors Constructor Description CompoundEnumeration(Enumeration<?>[] enums)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasMoreElements()
E
nextElement()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Enumeration
asIterator
-
-
-
-
Constructor Detail
-
CompoundEnumeration
public CompoundEnumeration(Enumeration<?>[] enums)
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
- Specified by:
hasMoreElements
in interfaceEnumeration<E>
-
nextElement
public E nextElement()
- Specified by:
nextElement
in interfaceEnumeration<E>
-
-