public static enum User.Education extends java.lang.Enum<User.Education>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toAString() |
static User.Education |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static User.Education[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final User.Education NA
public static final User.Education JH
public static final User.Education HS
public static final User.Education AS
public static final User.Education BS
public static final User.Education GRAD
public static final User.Education MS
public static final User.Education PHD
public static final User.Education NONE
public static User.Education[] values()
for (User.Education c : User.Education.values()) System.out.println(c);
public static User.Education valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toAString()