Package net.bytebuddy.dynamic.loading
Class MultipleParentClassLoader.CompoundEnumeration
- java.lang.Object
-
- net.bytebuddy.dynamic.loading.MultipleParentClassLoader.CompoundEnumeration
-
- All Implemented Interfaces:
Enumeration<URL>
- Enclosing class:
- MultipleParentClassLoader
protected static class MultipleParentClassLoader.CompoundEnumeration extends Object implements Enumeration<URL>
A compound URL enumeration.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CompoundEnumeration(List<Enumeration<URL>> enumerations)
Creates a compound enumeration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasMoreElements()
URL
nextElement()
-
-
-
Constructor Detail
-
CompoundEnumeration
protected CompoundEnumeration(List<Enumeration<URL>> enumerations)
Creates a compound enumeration.- Parameters:
enumerations
- The enumerations to represent.
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
- Specified by:
hasMoreElements
in interfaceEnumeration<URL>
-
nextElement
public URL nextElement()
- Specified by:
nextElement
in interfaceEnumeration<URL>
-
-