public enum AffiliationType extends Enum<AffiliationType>
Java class for affiliation-type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="affiliation-type">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="education"/>
<enumeration value="employment"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EDUCATION |
EMPLOYMENT |
| Modifier and Type | Method and Description |
|---|---|
static AffiliationType |
fromValue(String v) |
String |
value() |
static AffiliationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AffiliationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AffiliationType EDUCATION
public static final AffiliationType EMPLOYMENT
public static AffiliationType[] values()
for (AffiliationType c : AffiliationType.values()) System.out.println(c);
public static AffiliationType 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 AffiliationType fromValue(String v)
Copyright © 2017. All rights reserved.