Enum PayrollDeduction.Requiredness
- java.lang.Object
-
- java.lang.Enum<PayrollDeduction.Requiredness>
-
- com.ellucian.generated.eedm.matching_gift_policies.v6_0.PayrollDeduction.Requiredness
-
- All Implemented Interfaces:
Serializable
,Comparable<PayrollDeduction.Requiredness>
- Enclosing class:
- PayrollDeduction
@Generated("jsonschema2pojo") public static enum PayrollDeduction.Requiredness extends Enum<PayrollDeduction.Requiredness>
RequiredWhether the employee contributions have to be taken out of the payroll.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_REQUIRED
REQUIRED
-
Constructor Summary
Constructors Modifier Constructor Description private
Requiredness(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayrollDeduction.Requiredness
fromValue(String value)
String
toString()
String
value()
static PayrollDeduction.Requiredness
valueOf(String name)
Returns the enum constant of this type with the specified name.static PayrollDeduction.Requiredness[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUIRED
public static final PayrollDeduction.Requiredness REQUIRED
-
NOT_REQUIRED
public static final PayrollDeduction.Requiredness NOT_REQUIRED
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,PayrollDeduction.Requiredness> CONSTANTS
-
-
Constructor Detail
-
Requiredness
private Requiredness(String value)
-
-
Method Detail
-
values
public static PayrollDeduction.Requiredness[] 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 (PayrollDeduction.Requiredness c : PayrollDeduction.Requiredness.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayrollDeduction.Requiredness 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<PayrollDeduction.Requiredness>
-
value
public String value()
-
fromValue
public static PayrollDeduction.Requiredness fromValue(String value)
-
-