public static enum EnrolmentInfo.Status extends Enum<EnrolmentInfo.Status>
Enum Constant and Description |
---|
ACTIVE |
BLOCKED |
CREATED |
DISENROLLMENT_REQUESTED |
INACTIVE |
REMOVED |
SUSPENDED |
UNCLAIMED |
UNREACHABLE |
Modifier and Type | Method and Description |
---|---|
static EnrolmentInfo.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnrolmentInfo.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnrolmentInfo.Status CREATED
public static final EnrolmentInfo.Status ACTIVE
public static final EnrolmentInfo.Status INACTIVE
public static final EnrolmentInfo.Status UNREACHABLE
public static final EnrolmentInfo.Status UNCLAIMED
public static final EnrolmentInfo.Status SUSPENDED
public static final EnrolmentInfo.Status BLOCKED
public static final EnrolmentInfo.Status REMOVED
public static final EnrolmentInfo.Status DISENROLLMENT_REQUESTED
public static EnrolmentInfo.Status[] values()
for (EnrolmentInfo.Status c : EnrolmentInfo.Status.values()) System.out.println(c);
public static EnrolmentInfo.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 © 2017 WSO2. All rights reserved.