public enum AudioMediaType extends java.lang.Enum<AudioMediaType>
Java class for AudioMediaType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AudioMediaType">
<restriction base="{urn:hl7-org:v3}cs">
<enumeration value="audio/basic"/>
<enumeration value="audio/k32adpcm"/>
<enumeration value="audio/mpeg"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AUDIO_BASIC |
AUDIO_K_32_ADPCM |
AUDIO_MPEG |
| Modifier and Type | Method and Description |
|---|---|
static AudioMediaType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AudioMediaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioMediaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioMediaType AUDIO_BASIC
public static final AudioMediaType AUDIO_K_32_ADPCM
public static final AudioMediaType AUDIO_MPEG
public static AudioMediaType[] values()
for (AudioMediaType c : AudioMediaType.values()) System.out.println(c);
public static AudioMediaType 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 AudioMediaType fromValue(java.lang.String v)