public enum ProficiencyLevelType extends Enum<ProficiencyLevelType>
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="elementary"/> <enumeration value="limited_working"/> <enumeration value="professional_working"/> <enumeration value="full_professional"/> <enumeration value="native_or_bilingual"/> <enumeration value="beginner"/> <enumeration value="intermediate"/> <enumeration value="advanced"/> <enumeration value="expert"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ADVANCED |
BEGINNER |
ELEMENTARY |
EXPERT |
FULL_PROFESSIONAL |
INTERMEDIATE |
LIMITED_WORKING |
NATIVE_BILINGUAL |
PROFESSIONAL_WORKING |
Modifier and Type | Method and Description |
---|---|
static ProficiencyLevelType |
fromValue(String v) |
String |
value() |
static ProficiencyLevelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProficiencyLevelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProficiencyLevelType ELEMENTARY
public static final ProficiencyLevelType LIMITED_WORKING
public static final ProficiencyLevelType PROFESSIONAL_WORKING
public static final ProficiencyLevelType FULL_PROFESSIONAL
public static final ProficiencyLevelType NATIVE_BILINGUAL
public static final ProficiencyLevelType BEGINNER
public static final ProficiencyLevelType INTERMEDIATE
public static final ProficiencyLevelType ADVANCED
public static final ProficiencyLevelType EXPERT
public static ProficiencyLevelType[] values()
for (ProficiencyLevelType c : ProficiencyLevelType.values()) System.out.println(c);
public static ProficiencyLevelType 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 ProficiencyLevelType fromValue(String v)
Apache Camel