public static enum Participants.Status extends java.lang.Enum<Participants.Status>
Enum Constant and Description |
---|
APPROVED |
NEEDS_WORK |
UNAPPROVED |
Modifier and Type | Method and Description |
---|---|
static Participants.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Participants.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Participants.Status APPROVED
public static final Participants.Status UNAPPROVED
public static final Participants.Status NEEDS_WORK
public static Participants.Status[] values()
for (Participants.Status c : Participants.Status.values()) System.out.println(c);
public static Participants.Status 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 null