public enum EvaluationStatus extends Enum<EvaluationStatus>
Java class for EvaluationStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EvaluationStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CANCELED"/>
<enumeration value="COMPLETED"/>
<enumeration value="FAILED"/>
<enumeration value="IN_PROGRESS"/>
<enumeration value="INACTIVE"/>
<enumeration value="SKIPPED"/>
<enumeration value="INACTIVE_BUT_TRIGGERED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANCELED
When a
Proposal is retracted the associated workflow is canceled. |
COMPLETED
The entity is in a completed state.
|
FAILED
The entity is in a failed state.
|
IN_PROGRESS
The entity is in progress.
|
INACTIVE
The entity has not been started.
|
INACTIVE_BUT_TRIGGERED
The action is triggered because the
Proposal and/or proposal
line items trigger the conditions for the step, but the step itself has not started yet. |
SKIPPED
The action is skipped because the
Proposal and/or proposal line
items do not trigger the conditions for the step. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static EvaluationStatus |
fromValue(String v) |
String |
value() |
static EvaluationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationStatus CANCELED
Proposal is retracted the associated workflow is canceled.
Including the steps, rules and actions.public static final EvaluationStatus COMPLETED
public static final EvaluationStatus FAILED
public static final EvaluationStatus IN_PROGRESS
public static final EvaluationStatus INACTIVE
public static final EvaluationStatus SKIPPED
Proposal and/or proposal line
items do not trigger the conditions for the step. This value is only for actions.public static final EvaluationStatus INACTIVE_BUT_TRIGGERED
Proposal and/or proposal
line items trigger the conditions for the step, but the step itself has not started yet.public static final EvaluationStatus UNKNOWN
public static EvaluationStatus[] values()
for (EvaluationStatus c : EvaluationStatus.values()) System.out.println(c);
public static EvaluationStatus 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 nullpublic String value()
public static EvaluationStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.