public static enum InMobiSdk.Education extends java.lang.Enum<InMobiSdk.Education>
Enum Constant and Description |
---|
COLLEGE_OR_GRADUATE |
HIGH_SCHOOL_OR_LESS |
POST_GRADUATE_OR_ABOVE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static InMobiSdk.Education |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InMobiSdk.Education[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InMobiSdk.Education HIGH_SCHOOL_OR_LESS
public static final InMobiSdk.Education COLLEGE_OR_GRADUATE
public static final InMobiSdk.Education POST_GRADUATE_OR_ABOVE
public static InMobiSdk.Education[] values()
for (InMobiSdk.Education c : InMobiSdk.Education.values()) System.out.println(c);
public static InMobiSdk.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 toString()
toString
in class java.lang.Enum<InMobiSdk.Education>