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