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