public enum GradingEventStatus extends Enum<GradingEventStatus>
| Enum Constant and Description |
|---|
GRADE_EXCLUDED |
GRADE_INCLUDED |
GRADE_NONE |
| Modifier and Type | Method and Description |
|---|---|
static GradingEventStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GradingEventStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GradingEventStatus GRADE_NONE
public static final GradingEventStatus GRADE_EXCLUDED
public static final GradingEventStatus GRADE_INCLUDED
public static GradingEventStatus[] values()
for (GradingEventStatus c : GradingEventStatus.values()) System.out.println(c);
public static GradingEventStatus 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 © 2022. All rights reserved.