public static enum Program.ExecutionType extends Enum<Program.ExecutionType>
Modifier and Type | Method and Description |
---|---|
static Program.ExecutionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Program.ExecutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Program.ExecutionType SYNC
public static final Program.ExecutionType ASYNC
public static Program.ExecutionType[] values()
for (Program.ExecutionType c : Program.ExecutionType.values()) System.out.println(c);
public static Program.ExecutionType 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 SPF4J. All rights reserved.