Package br.com.senior.hcm.payroll.pojos
Enum RaisType
- java.lang.Object
-
- java.lang.Enum<RaisType>
-
- br.com.senior.hcm.payroll.pojos.RaisType
-
- All Implemented Interfaces:
Serializable,Comparable<RaisType>
public enum RaisType extends Enum<RaisType>
Gets or Sets raisType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRaisType.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RaisTypefromValue(String text)StringgetValue()StringtoString()static RaisTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RaisType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_10
public static final RaisType _10
-
_15
public static final RaisType _15
-
_20
public static final RaisType _20
-
_25
public static final RaisType _25
-
_30
public static final RaisType _30
-
_31
public static final RaisType _31
-
_35
public static final RaisType _35
-
_40
public static final RaisType _40
-
_49
public static final RaisType _49
-
_50
public static final RaisType _50
-
_55
public static final RaisType _55
-
_60
public static final RaisType _60
-
_65
public static final RaisType _65
-
_70
public static final RaisType _70
-
_75
public static final RaisType _75
-
_80
public static final RaisType _80
-
_90
public static final RaisType _90
-
_95
public static final RaisType _95
-
_96
public static final RaisType _96
-
_97
public static final RaisType _97
-
-
Method Detail
-
values
public static RaisType[] 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 (RaisType c : RaisType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RaisType 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()
-
-