public enum EnumSequenceName extends java.lang.Enum<EnumSequenceName>
| Enum Constant and Description |
|---|
ProcedureCodeSequence
Procedure Code Sequence
|
ReferencedPatientSequence
Referenced Patient Sequence
|
ReferencedStudySequence
Referenced Study Sequence
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This method gets the String name of the Sequence.
|
static EnumSequenceName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSequenceName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSequenceName ReferencedPatientSequence
public static final EnumSequenceName ProcedureCodeSequence
public static final EnumSequenceName ReferencedStudySequence
public static EnumSequenceName[] values()
for (EnumSequenceName c : EnumSequenceName.values()) System.out.println(c);
public static EnumSequenceName 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 getValue()