Enum Salary13Type
- java.lang.Object
-
- java.lang.Enum<Salary13Type>
-
- br.com.senior.hcm.dependent.pojos.Salary13Type
-
- All Implemented Interfaces:
Serializable,Comparable<Salary13Type>
public enum Salary13Type extends Enum<Salary13Type>
Gets or Sets salary13Type
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSalary13Type.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Salary13TypefromValue(String text)StringgetValue()StringtoString()static Salary13TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Salary13Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final Salary13Type YES
-
NO
public static final Salary13Type NO
-
PARTIAL
public static final Salary13Type PARTIAL
-
-
Method Detail
-
values
public static Salary13Type[] 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 (Salary13Type c : Salary13Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Salary13Type 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<Salary13Type>
-
fromValue
public static Salary13Type fromValue(String text)
-
-