Package br.com.senior.hcm.payroll.pojos
Enum MovimentationRaisType
- java.lang.Object
-
- java.lang.Enum<MovimentationRaisType>
-
- br.com.senior.hcm.payroll.pojos.MovimentationRaisType
-
- All Implemented Interfaces:
Serializable,Comparable<MovimentationRaisType>
public enum MovimentationRaisType extends Enum<MovimentationRaisType>
Gets or Sets movimentationRaisType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMovimentationRaisType.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MovimentationRaisTypefromValue(String text)StringgetValue()StringtoString()static MovimentationRaisTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MovimentationRaisType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_10
public static final MovimentationRaisType _10
-
_20
public static final MovimentationRaisType _20
-
_30
public static final MovimentationRaisType _30
-
_40
public static final MovimentationRaisType _40
-
_50
public static final MovimentationRaisType _50
-
_60
public static final MovimentationRaisType _60
-
_70
public static final MovimentationRaisType _70
-
-
Method Detail
-
values
public static MovimentationRaisType[] 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 (MovimentationRaisType c : MovimentationRaisType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MovimentationRaisType 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<MovimentationRaisType>
-
fromValue
public static MovimentationRaisType fromValue(String text)
-
-