public static enum QualityAssuranceResult.ResultState extends Enum<QualityAssuranceResult.ResultState>
| Enum Constant and Description |
|---|
FAILED
the activity instance contained errors which must be corrected
|
PASS_NO_CORRECTION
the activity instance contained no errors
|
PASS_WITH_CORRECTION
the activity instance contained errors and they were corrected by the quality assurance manager
|
| Modifier and Type | Method and Description |
|---|---|
static QualityAssuranceResult.ResultState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityAssuranceResult.ResultState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityAssuranceResult.ResultState PASS_WITH_CORRECTION
public static final QualityAssuranceResult.ResultState PASS_NO_CORRECTION
public static final QualityAssuranceResult.ResultState FAILED
public static QualityAssuranceResult.ResultState[] values()
for (QualityAssuranceResult.ResultState c : QualityAssuranceResult.ResultState.values()) System.out.println(c);
public static QualityAssuranceResult.ResultState 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 © 2016 Eclipse Stardust. All Rights Reserved.