Enum PayrollDeductionArrangements.Status
- java.lang.Object
-
- java.lang.Enum<PayrollDeductionArrangements.Status>
-
- com.ellucian.generated.eedm.payroll_deduction_arrangements.v7_0.PayrollDeductionArrangements.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<PayrollDeductionArrangements.Status>
- Enclosing class:
- PayrollDeductionArrangements
@Generated("jsonschema2pojo") public static enum PayrollDeductionArrangements.Status extends Enum<PayrollDeductionArrangements.Status>
StatusThe status of a payroll deduction request.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayrollDeductionArrangements.Status
fromValue(String value)
String
toString()
String
value()
static PayrollDeductionArrangements.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static PayrollDeductionArrangements.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 PayrollDeductionArrangements.Status ACTIVE
-
SUSPENDED
public static final PayrollDeductionArrangements.Status SUSPENDED
-
REJECTED
public static final PayrollDeductionArrangements.Status REJECTED
-
CANCELLED
public static final PayrollDeductionArrangements.Status CANCELLED
-
WITHDRAWN
public static final PayrollDeductionArrangements.Status WITHDRAWN
-
TERMINATED
public static final PayrollDeductionArrangements.Status TERMINATED
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,PayrollDeductionArrangements.Status> CONSTANTS
-
-
Constructor Detail
-
Status
private Status(String value)
-
-
Method Detail
-
values
public static PayrollDeductionArrangements.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 (PayrollDeductionArrangements.Status c : PayrollDeductionArrangements.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 PayrollDeductionArrangements.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<PayrollDeductionArrangements.Status>
-
value
public String value()
-
fromValue
public static PayrollDeductionArrangements.Status fromValue(String value)
-
-