public enum ExecutionType extends Enum<ExecutionType>
| Enum Constant and Description |
|---|
ALWAYS
Execute always even when events are being replied
|
ALWAYS_WHEN_EVENTS_APPLIED
Execute always when all events have been applied; application and plugin state is up-to-date
|
INIT_ONCE_ONLY
Execute a single time when initialising the duty cycle loop
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionType INIT_ONCE_ONLY
public static final ExecutionType ALWAYS_WHEN_EVENTS_APPLIED
public static final ExecutionType ALWAYS
public static ExecutionType[] values()
for (ExecutionType c : ExecutionType.values()) System.out.println(c);
public static 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 © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.