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