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