public enum IteratorFeature extends java.lang.Enum<IteratorFeature>
Iterator or ListIterator interface.
This enum is GWT compatible.
| Enum Constant and Description |
|---|
SUPPORTS_ADD
Support for
ListIterator.add(Object); ignored for plain Iterator
implementations. |
SUPPORTS_REMOVE
Support for
Iterator.remove(). |
SUPPORTS_SET
Support for
ListIterator.set(Object); ignored for plain Iterator
implementations. |
| Modifier and Type | Field and Description |
|---|---|
static java.util.Set<IteratorFeature> |
MODIFIABLE
A set containing all of the optional features of the
Iterator and ListIterator
interfaces. |
static java.util.Set<IteratorFeature> |
UNMODIFIABLE
A set containing none of the optional features of the
Iterator or ListIterator
interfaces. |
| Modifier and Type | Method and Description |
|---|---|
static IteratorFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IteratorFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IteratorFeature SUPPORTS_REMOVE
Iterator.remove().public static final IteratorFeature SUPPORTS_ADD
ListIterator.add(Object); ignored for plain Iterator
implementations.public static final IteratorFeature SUPPORTS_SET
ListIterator.set(Object); ignored for plain Iterator
implementations.public static final java.util.Set<IteratorFeature> UNMODIFIABLE
Iterator or ListIterator
interfaces.public static final java.util.Set<IteratorFeature> MODIFIABLE
Iterator and ListIterator
interfaces.public static IteratorFeature[] values()
for (IteratorFeature c : IteratorFeature.values()) System.out.println(c);
public static IteratorFeature 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 null