Package com.xero.models.payrollnz
Enum StatutoryDeductionCategory
- java.lang.Object
-
- java.lang.Enum<StatutoryDeductionCategory>
-
- com.xero.models.payrollnz.StatutoryDeductionCategory
-
- All Implemented Interfaces:
Serializable,Comparable<StatutoryDeductionCategory>
public enum StatutoryDeductionCategory extends Enum<StatutoryDeductionCategory>
Statutory Deduction Category
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONALSTUDENTLOANADDITIONALSTUDENTLOANCHILDSUPPORTCHILDSUPPORTCOURTFINESCOURTFINESINLANDREVENUEARREARSINLANDREVENUEARREARSKIWISAVERKIWISAVERMSDREPAYMENTSMSDREPAYMENTSNONPRIORITYORDERNONPRIORITYORDERPRIORITYORDERPRIORITYORDERSTUDENTLOANSTUDENTLOANTABLEBASEDTABLEBASEDVOLUNTARYSTUDENTLOANVOLUNTARYSTUDENTLOAN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StatutoryDeductionCategoryfromValue(String value)fromValueStringgetValue()StringtoString()toStringstatic StatutoryDeductionCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static StatutoryDeductionCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIORITYORDER
public static final StatutoryDeductionCategory PRIORITYORDER
PRIORITYORDER
-
NONPRIORITYORDER
public static final StatutoryDeductionCategory NONPRIORITYORDER
NONPRIORITYORDER
-
TABLEBASED
public static final StatutoryDeductionCategory TABLEBASED
TABLEBASED
-
CHILDSUPPORT
public static final StatutoryDeductionCategory CHILDSUPPORT
CHILDSUPPORT
-
COURTFINES
public static final StatutoryDeductionCategory COURTFINES
COURTFINES
-
INLANDREVENUEARREARS
public static final StatutoryDeductionCategory INLANDREVENUEARREARS
INLANDREVENUEARREARS
-
MSDREPAYMENTS
public static final StatutoryDeductionCategory MSDREPAYMENTS
MSDREPAYMENTS
-
STUDENTLOAN
public static final StatutoryDeductionCategory STUDENTLOAN
STUDENTLOAN
-
ADDITIONALSTUDENTLOAN
public static final StatutoryDeductionCategory ADDITIONALSTUDENTLOAN
ADDITIONALSTUDENTLOAN
-
VOLUNTARYSTUDENTLOAN
public static final StatutoryDeductionCategory VOLUNTARYSTUDENTLOAN
VOLUNTARYSTUDENTLOAN
-
KIWISAVER
public static final StatutoryDeductionCategory KIWISAVER
KIWISAVER
-
-
Method Detail
-
values
public static StatutoryDeductionCategory[] 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 (StatutoryDeductionCategory c : StatutoryDeductionCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatutoryDeductionCategory 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
-
getValue
public String getValue()
- Returns:
- String value
-
toString
public String toString()
toString- Overrides:
toStringin classEnum<StatutoryDeductionCategory>- Returns:
- String value
-
fromValue
public static StatutoryDeductionCategory fromValue(String value)
fromValue- Parameters:
value- String
-
-