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