public enum StepExecType extends java.lang.Enum<StepExecType>
The StepExecType
represents the type of execution a DataFlow
job can undergo. It is returned by
PlugStep.getExecutionType
.
Enum Constant and Description |
---|
FULL
Full execution.
|
NONE
Not executable.
|
PREVIEW
Preview execution.
|
UNKNOWN
Unknown.
|
Modifier and Type | Method and Description |
---|---|
static StepExecType |
valueOf(int value)
Return the
StepExecType that corresponds to the given integer value. |
static StepExecType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StepExecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepExecType UNKNOWN
public static final StepExecType NONE
public static final StepExecType FULL
public static final StepExecType PREVIEW
No physical changes will be made to any data and features not necessary for previewing can be avoided (such as doing record counts for status updates).
public static StepExecType[] values()
for (StepExecType c : StepExecType.values()) System.out.println(c);
public static StepExecType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static StepExecType valueOf(int value)
StepExecType
that corresponds to the given integer value.value
- The integer value to convert into a StepExecType
.StepExecType
that corresponds to the given integer.java.lang.IllegalArgumentException
- When the given value
is not supported.Copyright © 2012 SAS Institute Inc. All Rights Reserved.