Enum SchoolGradeType
- java.lang.Object
-
- java.lang.Enum<SchoolGradeType>
-
- br.com.senior.hcm.dependent.pojos.SchoolGradeType
-
- All Implemented Interfaces:
Serializable,Comparable<SchoolGradeType>
public enum SchoolGradeType extends Enum<SchoolGradeType>
Gets or Sets schoolGradeType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSchoolGradeType.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SchoolGradeTypefromValue(String text)StringgetValue()StringtoString()static SchoolGradeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SchoolGradeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_1
public static final SchoolGradeType _1
-
_2
public static final SchoolGradeType _2
-
_3
public static final SchoolGradeType _3
-
_4
public static final SchoolGradeType _4
-
_5
public static final SchoolGradeType _5
-
_6
public static final SchoolGradeType _6
-
_7
public static final SchoolGradeType _7
-
_8
public static final SchoolGradeType _8
-
_9
public static final SchoolGradeType _9
-
_10
public static final SchoolGradeType _10
-
_11
public static final SchoolGradeType _11
-
_12
public static final SchoolGradeType _12
-
_13
public static final SchoolGradeType _13
-
_14
public static final SchoolGradeType _14
-
_15
public static final SchoolGradeType _15
-
_16
public static final SchoolGradeType _16
-
_17
public static final SchoolGradeType _17
-
-
Method Detail
-
values
public static SchoolGradeType[] 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 (SchoolGradeType c : SchoolGradeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchoolGradeType 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<SchoolGradeType>
-
fromValue
public static SchoolGradeType fromValue(String text)
-
-