public enum JobTypeCode extends Enum<JobTypeCode>
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="F"/> <enumeration value="P"/> <enumeration value="C"/> <enumeration value="T"/> <enumeration value="O"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CONTRACT |
FULL_TIME |
OTHER |
PART_TIME |
TEMPORARY |
Modifier and Type | Method and Description |
---|---|
static JobTypeCode |
fromValue(String v) |
String |
value() |
static JobTypeCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobTypeCode FULL_TIME
public static final JobTypeCode PART_TIME
public static final JobTypeCode CONTRACT
public static final JobTypeCode TEMPORARY
public static final JobTypeCode OTHER
public static JobTypeCode[] values()
for (JobTypeCode c : JobTypeCode.values()) System.out.println(c);
public static JobTypeCode 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 JobTypeCode fromValue(String v)
Apache Camel