Enum InstitutionJobs.Status
- java.lang.Object
-
- java.lang.Enum<InstitutionJobs.Status>
-
- com.ellucian.generated.eedm.institution_jobs.v12_1_0.InstitutionJobs.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<InstitutionJobs.Status>
- Enclosing class:
- InstitutionJobs
@Generated("jsonschema2pojo") public static enum InstitutionJobs.Status extends Enum<InstitutionJobs.Status>
StatusThe status of the employee on the job.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstitutionJobs.Status
fromValue(String value)
String
toString()
String
value()
static InstitutionJobs.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static InstitutionJobs.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 InstitutionJobs.Status ACTIVE
-
ENDED
public static final InstitutionJobs.Status ENDED
-
LEAVE
public static final InstitutionJobs.Status LEAVE
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,InstitutionJobs.Status> CONSTANTS
-
-
Constructor Detail
-
Status
private Status(String value)
-
-
Method Detail
-
values
public static InstitutionJobs.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 (InstitutionJobs.Status c : InstitutionJobs.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 InstitutionJobs.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<InstitutionJobs.Status>
-
value
public String value()
-
fromValue
public static InstitutionJobs.Status fromValue(String value)
-
-