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