Enum Status.State
- java.lang.Object
-
- java.lang.Enum<Status.State>
-
- com.ellucian.generated.eedm.restricted_student_financial_aid_awards.v7_0.Status.State
-
- All Implemented Interfaces:
Serializable
,Comparable<Status.State>
- Enclosing class:
- Status
@Generated("jsonschema2pojo") public static enum Status.State extends Enum<Status.State>
StateThe state of the award.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Status.State
fromValue(String value)
String
toString()
String
value()
static Status.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static Status.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFERED
public static final Status.State OFFERED
-
ACCEPTED
public static final Status.State ACCEPTED
-
DECLINED
public static final Status.State DECLINED
-
CANCELLED
public static final Status.State CANCELLED
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,Status.State> CONSTANTS
-
-
Constructor Detail
-
State
private State(String value)
-
-
Method Detail
-
values
public static Status.State[] 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 (Status.State c : Status.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Status.State 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<Status.State>
-
value
public String value()
-
fromValue
public static Status.State fromValue(String value)
-
-