enum IterationOrder extends java.lang.Enum<IterationOrder>
| Modifier and Type | Method and Description |
|---|---|
(package private) abstract <T> void |
forEach(java.util.List<T> listeners,
java.util.function.Consumer<T> action) |
static IterationOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IterationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IterationOrder ORIGINAL
public static final IterationOrder REVERSED
public static IterationOrder[] values()
for (IterationOrder c : IterationOrder.values()) System.out.println(c);
public static IterationOrder 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 nullabstract <T> void forEach(java.util.List<T> listeners,
java.util.function.Consumer<T> action)