protected static enum ByteArrayClassLoader.EmptyEnumeration extends java.lang.Enum<ByteArrayClassLoader.EmptyEnumeration> implements java.util.Enumeration<java.net.URL>
| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasMoreElements() |
java.net.URL |
nextElement() |
static ByteArrayClassLoader.EmptyEnumeration |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ByteArrayClassLoader.EmptyEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteArrayClassLoader.EmptyEnumeration INSTANCE
public static ByteArrayClassLoader.EmptyEnumeration[] values()
for (ByteArrayClassLoader.EmptyEnumeration c : ByteArrayClassLoader.EmptyEnumeration.values()) System.out.println(c);
public static ByteArrayClassLoader.EmptyEnumeration valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean hasMoreElements()
hasMoreElements in interface java.util.Enumeration<java.net.URL>public java.net.URL nextElement()
nextElement in interface java.util.Enumeration<java.net.URL>