public enum SegmentExecutionState extends Enum<SegmentExecutionState>
Enum Constant and Description |
---|
COMPLETE |
ERROR |
EXECUTING |
UNKNOWN |
WAITING |
Modifier and Type | Method and Description |
---|---|
static SegmentExecutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SegmentExecutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SegmentExecutionState WAITING
public static final SegmentExecutionState EXECUTING
public static final SegmentExecutionState COMPLETE
public static final SegmentExecutionState ERROR
public static final SegmentExecutionState UNKNOWN
public static SegmentExecutionState[] values()
for (SegmentExecutionState c : SegmentExecutionState.values()) System.out.println(c);
public static SegmentExecutionState 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 © 2001–2019 JBoss by Red Hat. All rights reserved.