Package br.com.senior.hcm.payroll.pojos
Enum HireType
- java.lang.Object
-
- java.lang.Enum<HireType>
-
- br.com.senior.hcm.payroll.pojos.HireType
-
- All Implemented Interfaces:
Serializable,Comparable<HireType>
public enum HireType extends Enum<HireType>
Gets or Sets hireType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHireType.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description DECENTRALIZEDEMPTYFIRSTJOBINCORPORATIONPROVISIONALREADAPTATIONRECONSTRUCTIONREDISTRIBUTIONREEMPREGOREINTEGRATIONREMOVALREQUESTREVERSALTRANSFERWITHONUSTRANSFERWITHOUTONUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HireTypefromValue(String text)StringgetValue()StringtoString()static HireTypevalueOf(String name)Returns the enum constant of this type with the specified name.static HireType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMPTY
public static final HireType EMPTY
-
FIRSTJOB
public static final HireType FIRSTJOB
-
REEMPREGO
public static final HireType REEMPREGO
-
TRANSFERWITHONUS
public static final HireType TRANSFERWITHONUS
-
TRANSFERWITHOUTONUS
public static final HireType TRANSFERWITHOUTONUS
-
INCORPORATION
public static final HireType INCORPORATION
-
REINTEGRATION
public static final HireType REINTEGRATION
-
RECONSTRUCTION
public static final HireType RECONSTRUCTION
-
REVERSAL
public static final HireType REVERSAL
-
PROVISIONAL
public static final HireType PROVISIONAL
-
REQUEST
public static final HireType REQUEST
-
REDISTRIBUTION
public static final HireType REDISTRIBUTION
-
DECENTRALIZED
public static final HireType DECENTRALIZED
-
REMOVAL
public static final HireType REMOVAL
-
READAPTATION
public static final HireType READAPTATION
-
-
Method Detail
-
values
public static HireType[] 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 (HireType c : HireType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HireType 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()
-
-