private static enum Combinations.IterationOrder extends java.lang.Enum<Combinations.IterationOrder>
iterator.| Enum Constant and Description |
|---|
LEXICOGRAPHIC
Lexicographic order.
|
| Modifier and Type | Method and Description |
|---|---|
static Combinations.IterationOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Combinations.IterationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Combinations.IterationOrder LEXICOGRAPHIC
public static Combinations.IterationOrder[] values()
for (Combinations.IterationOrder c : Combinations.IterationOrder.values()) System.out.println(c);
public static Combinations.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 nullCopyright (c) 2003-2015 Apache Software Foundation