public enum RecordType extends java.lang.Enum<RecordType>
| Enum Constant and Description |
|---|
OASIS_B |
OASIS_C |
OASIS_C1_ICD_10 |
OASIS_C1_ICD_9 |
OASIS_C2 |
OASIS_D |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription() |
static RecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordType UNKNOWN
public static final RecordType OASIS_B
public static final RecordType OASIS_C
public static final RecordType OASIS_C1_ICD_9
public static final RecordType OASIS_C1_ICD_10
public static final RecordType OASIS_C2
public static final RecordType OASIS_D
public static RecordType[] values()
for (RecordType c : RecordType.values()) System.out.println(c);
public static RecordType 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 getDescription()