@GwtCompatible public enum IteratorFeature extends 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 Set<IteratorFeature> |
MODIFIABLE
A set containing all of the optional features of the
Iterator and
ListIterator interfaces. |
static 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(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 Set<IteratorFeature> UNMODIFIABLE
Iterator or
ListIterator interfaces.public static final Set<IteratorFeature> MODIFIABLE
Iterator and
ListIterator interfaces.public static IteratorFeature[] values()
for (IteratorFeature c : IteratorFeature.values()) System.out.println(c);
public static IteratorFeature valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2010-2016. All Rights Reserved.