public static enum CompositeStateRepository.IterationOrder extends Enum<CompositeStateRepository.IterationOrder> implements CompositeStateRepository.RepositorySelector
| Enum Constant and Description |
|---|
FIFO
The iteration order is the same as what was specified when constructing this composite.
|
LIFO
The iteration order is the revers of what was specified when constructing this composite.
|
| Modifier and Type | Method and Description |
|---|---|
static CompositeStateRepository.IterationOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompositeStateRepository.IterationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetSelectedpublic static final CompositeStateRepository.IterationOrder FIFO
public static final CompositeStateRepository.IterationOrder LIFO
public static CompositeStateRepository.IterationOrder[] values()
for (CompositeStateRepository.IterationOrder c : CompositeStateRepository.IterationOrder.values()) System.out.println(c);
public static CompositeStateRepository.IterationOrder 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 © 2018. All Rights Reserved.