public enum AcEvaluationItemState extends Enum<AcEvaluationItemState>
| Enum Constant and Description |
|---|
Correct |
Inconsistent |
Incorrect |
Undefined |
| Modifier and Type | Method and Description |
|---|---|
static AcEvaluationItemState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcEvaluationItemState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcEvaluationItemState Incorrect
public static final AcEvaluationItemState Correct
public static final AcEvaluationItemState Undefined
public static final AcEvaluationItemState Inconsistent
public static AcEvaluationItemState[] values()
for (AcEvaluationItemState c : AcEvaluationItemState.values()) System.out.println(c);
public static AcEvaluationItemState 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 © 2019. All Rights Reserved.