public enum ExperienceLevelCode extends Enum<ExperienceLevelCode>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="0"/>
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
<enumeration value="4"/>
<enumeration value="5"/>
<enumeration value="6"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ASSOCIATE |
DIRECTOR |
ENTRY_LEVEL |
EXECUTIVE |
INTERNSHIP |
MID_SENIOR_LEVEL |
NOT_APPLICABLE |
| Modifier and Type | Method and Description |
|---|---|
static ExperienceLevelCode |
fromValue(String v) |
String |
value() |
static ExperienceLevelCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExperienceLevelCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExperienceLevelCode NOT_APPLICABLE
public static final ExperienceLevelCode INTERNSHIP
public static final ExperienceLevelCode ENTRY_LEVEL
public static final ExperienceLevelCode ASSOCIATE
public static final ExperienceLevelCode MID_SENIOR_LEVEL
public static final ExperienceLevelCode DIRECTOR
public static final ExperienceLevelCode EXECUTIVE
public static ExperienceLevelCode[] values()
for (ExperienceLevelCode c : ExperienceLevelCode.values()) System.out.println(c);
public static ExperienceLevelCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ExperienceLevelCode fromValue(String v)
Apache Camel