public enum DeductionTypeCalculationType extends Enum<DeductionTypeCalculationType>
| Enum Constant and Description |
|---|
FIXEDAMOUNT |
POSTTAX |
PRETAX |
| Modifier and Type | Method and Description |
|---|---|
static DeductionTypeCalculationType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static DeductionTypeCalculationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeductionTypeCalculationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeductionTypeCalculationType FIXEDAMOUNT
public static final DeductionTypeCalculationType PRETAX
public static final DeductionTypeCalculationType POSTTAX
public static DeductionTypeCalculationType[] values()
for (DeductionTypeCalculationType c : DeductionTypeCalculationType.values()) System.out.println(c);
public static DeductionTypeCalculationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
public String toString()
toString in class Enum<DeductionTypeCalculationType>public static DeductionTypeCalculationType fromValue(String value)
Copyright © 2020. All rights reserved.