public enum ConnectorState extends Enum<ConnectorState>
| Enum Constant and Description |
|---|
DONE |
EXECUTING |
FAILED |
SKIPPED |
TO_BE_EXECUTED |
TO_RE_EXECUTE |
| Modifier and Type | Method and Description |
|---|---|
static ConnectorState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorState TO_BE_EXECUTED
public static final ConnectorState EXECUTING
public static final ConnectorState TO_RE_EXECUTE
public static final ConnectorState DONE
public static final ConnectorState FAILED
public static final ConnectorState SKIPPED
public static ConnectorState[] values()
for (ConnectorState c : ConnectorState.values()) System.out.println(c);
public static ConnectorState 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 Bonitasoft S.A.. All rights reserved.