Enum ESocialDependentType
- java.lang.Object
-
- java.lang.Enum<ESocialDependentType>
-
- br.com.senior.hcm.dependent.pojos.ESocialDependentType
-
- All Implemented Interfaces:
Serializable,Comparable<ESocialDependentType>
public enum ESocialDependentType extends Enum<ESocialDependentType>
Gets or Sets eSocialDependentType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classESocialDependentType.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATEOTHERSDONTTAKEDEPENDENTEXSPOUSEINCAPABLEPERSONPARENTSGRANDPARENTSGREATPARTNERPOORMINORSIBLINGGRANDSONGREATSIBLINGGRANDSONGREATSTUDENTSONSTEPSONSONSTEPSONSTUDENTSPOUSE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ESocialDependentTypefromValue(String text)StringgetValue()StringtoString()static ESocialDependentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ESocialDependentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DONTTAKEDEPENDENT
public static final ESocialDependentType DONTTAKEDEPENDENT
-
SPOUSE
public static final ESocialDependentType SPOUSE
-
PARTNER
public static final ESocialDependentType PARTNER
-
SONSTEPSON
public static final ESocialDependentType SONSTEPSON
-
SONSTEPSONSTUDENT
public static final ESocialDependentType SONSTEPSONSTUDENT
-
SIBLINGGRANDSONGREAT
public static final ESocialDependentType SIBLINGGRANDSONGREAT
-
SIBLINGGRANDSONGREATSTUDENT
public static final ESocialDependentType SIBLINGGRANDSONGREATSTUDENT
-
PARENTSGRANDPARENTSGREAT
public static final ESocialDependentType PARENTSGRANDPARENTSGREAT
-
POORMINOR
public static final ESocialDependentType POORMINOR
-
INCAPABLEPERSON
public static final ESocialDependentType INCAPABLEPERSON
-
EXSPOUSE
public static final ESocialDependentType EXSPOUSE
-
AGGREGATEOTHERS
public static final ESocialDependentType AGGREGATEOTHERS
-
-
Method Detail
-
values
public static ESocialDependentType[] 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 (ESocialDependentType c : ESocialDependentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESocialDependentType 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<ESocialDependentType>
-
fromValue
public static ESocialDependentType fromValue(String text)
-
-