Enum Goal.Status
- java.lang.Object
-
- java.lang.Enum<Goal.Status>
-
- com.ellucian.generated.eedm.recruitment_enrollment_goals.v12_0.Goal.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<Goal.Status>
- Enclosing class:
- Goal
@Generated("jsonschema2pojo") public static enum Goal.Status extends Enum<Goal.Status>
StatusA calculated assessment based on the source system's criteria if the goal has been met, not met or if the assessment is pending.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Goal.Status
fromValue(String value)
String
toString()
String
value()
static Goal.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Goal.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING
public static final Goal.Status PENDING
-
MET
public static final Goal.Status MET
-
NOT_MET
public static final Goal.Status NOT_MET
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,Goal.Status> CONSTANTS
-
-
Constructor Detail
-
Status
private Status(String value)
-
-
Method Detail
-
values
public static Goal.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 (Goal.Status c : Goal.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 Goal.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<Goal.Status>
-
value
public String value()
-
fromValue
public static Goal.Status fromValue(String value)
-
-