public enum PrepState extends java.lang.Enum<PrepState>
Returned by IStep.prep()
to
indicate the result of preparing for execution.
Enum Constant and Description |
---|
ALL_SUCCESS
Complete success.
|
FAILED
Complete failure.
|
INPUTNAMES
Retrieval of input field information was successful.
|
OUTPUTCOMPLETE
Specification of all output information was successful.
|
OUTPUTNAMES
Specification of output field names was successful.
|
UNKNOWN
Unknown state.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Return the integer equivalent of the
PrepState . |
static PrepState |
valueOf(int value)
Return the
PrepState that corresponds to the given value. |
static PrepState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrepState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrepState UNKNOWN
public static final PrepState FAILED
public static final PrepState INPUTNAMES
public static final PrepState OUTPUTNAMES
public static final PrepState OUTPUTCOMPLETE
public static final PrepState ALL_SUCCESS
public static PrepState[] values()
for (PrepState c : PrepState.values()) System.out.println(c);
public static PrepState 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 int getValue()
PrepState
.PrepState
.public static PrepState valueOf(int value)
PrepState
that corresponds to the given value.value
- The integer equivalent of a PrepState
.PrepState
that corresponds to the given value.java.lang.IllegalArgumentException
- When the given value
is not supported.Copyright © 2012 SAS Institute Inc. All Rights Reserved.