public enum PipelineReturnValue extends Enum<PipelineReturnValue>
IPipeline interface.| Enum Constant and Description |
|---|
CANCELLED
IPipeline was canceled. |
DESTROYED
IPipeline has been stopped and all steps have finalized. |
FAILED
One of the
IPipeline steps has failed. |
INTERRUPTED
IPipeline was interrupted. |
PAUSED
IPipeline has been paused. |
RUNNING
IPipeline is currently running. |
SUCCEDED
IPipeline completed successfully. |
| Modifier and Type | Method and Description |
|---|---|
static PipelineReturnValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelineReturnValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineReturnValue SUCCEDED
IPipeline completed successfully.public static final PipelineReturnValue FAILED
IPipeline steps has failed.public static final PipelineReturnValue INTERRUPTED
IPipeline was interrupted.public static final PipelineReturnValue RUNNING
IPipeline is currently running.public static final PipelineReturnValue PAUSED
IPipeline has been paused.public static final PipelineReturnValue CANCELLED
IPipeline was canceled.public static final PipelineReturnValue DESTROYED
public static PipelineReturnValue[] values()
for (PipelineReturnValue c : PipelineReturnValue.values()) System.out.println(c);
public static PipelineReturnValue 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 © 2022. All rights reserved.