public enum AdHocOrdering extends Enum<AdHocOrdering>
Enum Constant and Description |
---|
PARALLELORDERING |
SEQUENTIALORDERING |
Modifier and Type | Field and Description |
---|---|
static int |
PARALLELORDERING_VALUE |
static int |
SEQUENTIALORDERING_VALUE |
static List<AdHocOrdering> |
VALUES |
Modifier and Type | Method and Description |
---|---|
static AdHocOrdering |
get(int value) |
static AdHocOrdering |
get(String literal) |
static AdHocOrdering |
getByName(String name) |
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString() |
static AdHocOrdering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdHocOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdHocOrdering PARALLELORDERING
public static final AdHocOrdering SEQUENTIALORDERING
public static final int PARALLELORDERING_VALUE
public static final int SEQUENTIALORDERING_VALUE
public static final List<AdHocOrdering> VALUES
public static AdHocOrdering[] values()
for (AdHocOrdering c : AdHocOrdering.values()) System.out.println(c);
public static AdHocOrdering 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 nullpublic static AdHocOrdering get(String literal)
public static AdHocOrdering getByName(String name)
public static AdHocOrdering get(int value)
public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString
in class Enum<AdHocOrdering>