public enum CandidateApiAssociation extends java.lang.Enum<CandidateApiAssociation>
Java class for candidateApiAssociation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="candidateApiAssociation"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="businessSectors"/> <enumeration value="categories"/> <enumeration value="certificationList"/> <enumeration value="primarySkills"/> <enumeration value="secondaryOwners"/> <enumeration value="secondarySkills"/> <enumeration value="specialties"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BUSINESS_SECTORS |
CATEGORIES |
CERTIFICATION_LIST |
PRIMARY_SKILLS |
SECONDARY_OWNERS |
SECONDARY_SKILLS |
SPECIALTIES |
Modifier and Type | Method and Description |
---|---|
static CandidateApiAssociation |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CandidateApiAssociation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CandidateApiAssociation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CandidateApiAssociation BUSINESS_SECTORS
public static final CandidateApiAssociation CATEGORIES
public static final CandidateApiAssociation CERTIFICATION_LIST
public static final CandidateApiAssociation PRIMARY_SKILLS
public static final CandidateApiAssociation SECONDARY_OWNERS
public static final CandidateApiAssociation SECONDARY_SKILLS
public static final CandidateApiAssociation SPECIALTIES
public static CandidateApiAssociation[] values()
for (CandidateApiAssociation c : CandidateApiAssociation.values()) System.out.println(c);
public static CandidateApiAssociation 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 value()
public static CandidateApiAssociation fromValue(java.lang.String v)