Enum DegreeInstructionType
- java.lang.Object
-
- java.lang.Enum<DegreeInstructionType>
-
- br.com.senior.hcm.dependent.pojos.DegreeInstructionType
-
- All Implemented Interfaces:
Serializable,Comparable<DegreeInstructionType>
public enum DegreeInstructionType extends Enum<DegreeInstructionType>
Gets or Sets degreeInstructionType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDegreeInstructionType.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description BACHELORCOMPLETEBACHELORINCOMPLETEDOCTORALELEMENTARYSCHOOLCOMPLETEELEMENTARYSCHOOLINCOMPLETEHIGHSCHOOLCOMPLETEHIGHSCHOOLINCOMPLETEILLITERATEMASTERMIDDLESCHOOLCOMPLETEMIDDLESCHOOLINCOMPLETEPOSTGRADUATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DegreeInstructionTypefromValue(String text)StringgetValue()StringtoString()static DegreeInstructionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DegreeInstructionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ILLITERATE
public static final DegreeInstructionType ILLITERATE
-
ELEMENTARYSCHOOLINCOMPLETE
public static final DegreeInstructionType ELEMENTARYSCHOOLINCOMPLETE
-
ELEMENTARYSCHOOLCOMPLETE
public static final DegreeInstructionType ELEMENTARYSCHOOLCOMPLETE
-
MIDDLESCHOOLINCOMPLETE
public static final DegreeInstructionType MIDDLESCHOOLINCOMPLETE
-
MIDDLESCHOOLCOMPLETE
public static final DegreeInstructionType MIDDLESCHOOLCOMPLETE
-
HIGHSCHOOLINCOMPLETE
public static final DegreeInstructionType HIGHSCHOOLINCOMPLETE
-
HIGHSCHOOLCOMPLETE
public static final DegreeInstructionType HIGHSCHOOLCOMPLETE
-
BACHELORINCOMPLETE
public static final DegreeInstructionType BACHELORINCOMPLETE
-
BACHELORCOMPLETE
public static final DegreeInstructionType BACHELORCOMPLETE
-
POSTGRADUATE
public static final DegreeInstructionType POSTGRADUATE
-
MASTER
public static final DegreeInstructionType MASTER
-
DOCTORAL
public static final DegreeInstructionType DOCTORAL
-
-
Method Detail
-
values
public static DegreeInstructionType[] 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 (DegreeInstructionType c : DegreeInstructionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DegreeInstructionType 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<DegreeInstructionType>
-
fromValue
public static DegreeInstructionType fromValue(String text)
-
-