public enum RoleCode extends Enum<RoleCode>
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="H"/>
<enumeration value="R"/>
<enumeration value="S"/>
<enumeration value="W"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMPANY_EMPLOYEE |
COMPANY_RECRUITER |
HIRING_MANAGER |
STAFFING_FIRM |
| Modifier and Type | Method and Description |
|---|---|
static RoleCode |
fromValue(String v) |
String |
value() |
static RoleCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoleCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoleCode HIRING_MANAGER
public static final RoleCode COMPANY_RECRUITER
public static final RoleCode STAFFING_FIRM
public static final RoleCode COMPANY_EMPLOYEE
public static RoleCode[] values()
for (RoleCode c : RoleCode.values()) System.out.println(c);
public static RoleCode 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()
Apache Camel