public enum CodingSystem extends Enum<CodingSystem>
CodingSystem
Enumeration of coding system types.| Enum Constant and Description |
|---|
LN
LOINC.
|
| Modifier and Type | Method and Description |
|---|---|
static CodingSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodingSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodingSystem LN
public static CodingSystem[] values()
for (CodingSystem c : CodingSystem.values()) System.out.println(c);
public static CodingSystem 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 nullCopyright © 2021. All rights reserved.