public static enum Candidate.CandidateType extends Enum<Candidate.CandidateType>
Enum Constant and Description |
---|
SERIALIZATION |
STANDARD |
Modifier and Type | Method and Description |
---|---|
static Candidate.CandidateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Candidate.CandidateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Candidate.CandidateType STANDARD
public static final Candidate.CandidateType SERIALIZATION
public static Candidate.CandidateType[] values()
for (Candidate.CandidateType c : Candidate.CandidateType.values()) System.out.println(c);
public static Candidate.CandidateType 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 © 2006–2021 Joe Walnes, Henri Tremblay, Leonardo Mesquita. All rights reserved.