public enum EnrollmentState extends java.lang.Enum<EnrollmentState>
| Enum Constant and Description |
|---|
ENROLLED
enrolled
|
FAILED
failed
|
NOT_CONTACTED
not Contacted
|
PENDING_RESET
pending Reset
|
UNEXPECTED_VALUE
For EnrollmentState values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static EnrollmentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnrollmentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnrollmentState UNKNOWN
public static final EnrollmentState ENROLLED
public static final EnrollmentState PENDING_RESET
public static final EnrollmentState FAILED
public static final EnrollmentState NOT_CONTACTED
public static final EnrollmentState UNEXPECTED_VALUE
public static EnrollmentState[] values()
for (EnrollmentState c : EnrollmentState.values()) System.out.println(c);
public static EnrollmentState 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