public static enum MemberCandidacy.Status extends Enum<MemberCandidacy.Status>
Enum Constant and Description |
---|
ACCEPTED
The candidacy has been accepted.
|
PENDING
The candidacy is waiting to be reviewed.
|
REJECTED
The candidacy has been rejected.
|
Modifier and Type | Method and Description |
---|---|
static MemberCandidacy.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberCandidacy.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberCandidacy.Status PENDING
public static final MemberCandidacy.Status ACCEPTED
public static final MemberCandidacy.Status REJECTED
public static MemberCandidacy.Status[] values()
for (MemberCandidacy.Status c : MemberCandidacy.Status.values()) System.out.println(c);
public static MemberCandidacy.Status 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 © 2004–2021 XWiki. All rights reserved.