public enum EducationContactRelationship extends java.lang.Enum<EducationContactRelationship>
| Enum Constant and Description |
|---|
AIDE
aide
|
CHILD
child
|
DOCTOR
doctor
|
GUARDIAN
guardian
|
OTHER
other
|
PARENT
parent
|
RELATIVE
relative
|
UNEXPECTED_VALUE
For EducationContactRelationship values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static EducationContactRelationship |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EducationContactRelationship[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EducationContactRelationship PARENT
public static final EducationContactRelationship RELATIVE
public static final EducationContactRelationship AIDE
public static final EducationContactRelationship DOCTOR
public static final EducationContactRelationship GUARDIAN
public static final EducationContactRelationship CHILD
public static final EducationContactRelationship OTHER
public static final EducationContactRelationship UNKNOWN_FUTURE_VALUE
public static final EducationContactRelationship UNEXPECTED_VALUE
public static EducationContactRelationship[] values()
for (EducationContactRelationship c : EducationContactRelationship.values()) System.out.println(c);
public static EducationContactRelationship 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 null