public enum IntendedUse extends Enum<IntendedUse>
Java class for IntendedUse.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IntendedUse">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Inf"/>
<enumeration value="MedA"/>
<enumeration value="MedB"/>
<enumeration value="MedC"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INFORMATIONAL
Inf = Informational.
|
MED_A
MedA = Medical Class A.
|
MED_B
MedB = Medical Class B.
|
MED_C
MedC = Medical Class C.
|
| Modifier and Type | Method and Description |
|---|---|
static IntendedUse |
fromValue(String v) |
String |
value() |
static IntendedUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntendedUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntendedUse INFORMATIONAL
public static final IntendedUse MED_A
public static final IntendedUse MED_B
public static final IntendedUse MED_C
public static IntendedUse[] values()
for (IntendedUse c : IntendedUse.values()) System.out.println(c);
public static IntendedUse 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 IntendedUse fromValue(String v)
Copyright © 2016. All rights reserved.