private static enum Iterators.EmptyModifiableIterator extends java.lang.Enum<Iterators.EmptyModifiableIterator> implements java.util.Iterator<java.lang.Object>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext() |
java.lang.Object |
next() |
void |
remove() |
static Iterators.EmptyModifiableIterator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Iterators.EmptyModifiableIterator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Iterators.EmptyModifiableIterator INSTANCE
public static Iterators.EmptyModifiableIterator[] values()
for (Iterators.EmptyModifiableIterator c : Iterators.EmptyModifiableIterator.values()) System.out.println(c);
public static Iterators.EmptyModifiableIterator 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 hasNext()
hasNext in interface java.util.Iterator<java.lang.Object>public java.lang.Object next()
next in interface java.util.Iterator<java.lang.Object>public void remove()
remove in interface java.util.Iterator<java.lang.Object>