Package br.com.senior.hcm.payroll.pojos
Enum AdditionalPaymentType
- java.lang.Object
-
- java.lang.Enum<AdditionalPaymentType>
-
- br.com.senior.hcm.payroll.pojos.AdditionalPaymentType
-
- All Implemented Interfaces:
Serializable,Comparable<AdditionalPaymentType>
public enum AdditionalPaymentType extends Enum<AdditionalPaymentType>
Gets or Sets additionalPaymentType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdditionalPaymentType.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdditionalPaymentTypefromValue(String text)StringgetValue()StringtoString()static AdditionalPaymentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AdditionalPaymentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_0
public static final AdditionalPaymentType _0
-
_1
public static final AdditionalPaymentType _1
-
_2
public static final AdditionalPaymentType _2
-
_3
public static final AdditionalPaymentType _3
-
_4
public static final AdditionalPaymentType _4
-
_5
public static final AdditionalPaymentType _5
-
_6
public static final AdditionalPaymentType _6
-
_7
public static final AdditionalPaymentType _7
-
_8
public static final AdditionalPaymentType _8
-
_9
public static final AdditionalPaymentType _9
-
-
Method Detail
-
values
public static AdditionalPaymentType[] 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 (AdditionalPaymentType c : AdditionalPaymentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdditionalPaymentType 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()
-
toString
public String toString()
- Overrides:
toStringin classEnum<AdditionalPaymentType>
-
fromValue
public static AdditionalPaymentType fromValue(String text)
-
-