Package br.com.senior.hcm.payroll.pojos
Enum LoseVacationRightType
- java.lang.Object
-
- java.lang.Enum<LoseVacationRightType>
-
- br.com.senior.hcm.payroll.pojos.LoseVacationRightType
-
- All Implemented Interfaces:
Serializable,Comparable<LoseVacationRightType>
public enum LoseVacationRightType extends Enum<LoseVacationRightType>
Gets or Sets loseVacationRightType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLoseVacationRightType.Adapter
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoseVacationRightTypefromValue(String text)StringgetValue()StringtoString()static LoseVacationRightTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LoseVacationRightType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A_LOSE_RIGHT_GREATER_THAN_180_DAYS
public static final LoseVacationRightType A_LOSE_RIGHT_GREATER_THAN_180_DAYS
-
L_LOSE_RIGHT_GREATER_THAN_30_DAYS
public static final LoseVacationRightType L_LOSE_RIGHT_GREATER_THAN_30_DAYS
-
I_INTERRUPTS_AND_CONTINUES_ON_RETURN
public static final LoseVacationRightType I_INTERRUPTS_AND_CONTINUES_ON_RETURN
-
P_LOSE_FRACTION_CORRESPONDING_TO_THE_MONTH
public static final LoseVacationRightType P_LOSE_FRACTION_CORRESPONDING_TO_THE_MONTH
-
N_NOT_CONSIDER_FOR_VACATION_RIGHT_CALCULATION
public static final LoseVacationRightType N_NOT_CONSIDER_FOR_VACATION_RIGHT_CALCULATION
-
-
Method Detail
-
values
public static LoseVacationRightType[] 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 (LoseVacationRightType c : LoseVacationRightType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoseVacationRightType 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<LoseVacationRightType>
-
fromValue
public static LoseVacationRightType fromValue(String text)
-
-