Enum EnrollmentStatus.Status
- java.lang.Object
-
- java.lang.Enum<EnrollmentStatus.Status>
-
- com.ellucian.generated.eedm.student_academic_programs.v17_0_0.EnrollmentStatus.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<EnrollmentStatus.Status>
- Enclosing class:
- EnrollmentStatus
@Generated("jsonschema2pojo") public static enum EnrollmentStatus.Status extends Enum<EnrollmentStatus.Status>
Enrollment StatusThe status of the academic program enrollment.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnrollmentStatus.Status
fromValue(String value)
String
toString()
String
value()
static EnrollmentStatus.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static EnrollmentStatus.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final EnrollmentStatus.Status ACTIVE
-
INACTIVE
public static final EnrollmentStatus.Status INACTIVE
-
COMPLETE
public static final EnrollmentStatus.Status COMPLETE
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,EnrollmentStatus.Status> CONSTANTS
-
-
Constructor Detail
-
Status
private Status(String value)
-
-
Method Detail
-
values
public static EnrollmentStatus.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EnrollmentStatus.Status c : EnrollmentStatus.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnrollmentStatus.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<EnrollmentStatus.Status>
-
value
public String value()
-
fromValue
public static EnrollmentStatus.Status fromValue(String value)
-
-