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