public static enum Candidate.CandidateType extends Enum<Candidate.CandidateType>
| Enum Constant and Description |
|---|
Local |
PeerReflexive |
Relayed |
ServerReflexive |
| 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 Local
public static final Candidate.CandidateType ServerReflexive
public static final Candidate.CandidateType PeerReflexive
public static final Candidate.CandidateType Relayed
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 null