public enum HL7ProcessingId extends Enum<HL7ProcessingId>
Enum Constant and Description |
---|
DEBUGGING |
PRODUCTION |
TRAINING |
Modifier and Type | Method and Description |
---|---|
static HL7ProcessingId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HL7ProcessingId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HL7ProcessingId DEBUGGING
public static final HL7ProcessingId PRODUCTION
public static final HL7ProcessingId TRAINING
public final String idValue
public static HL7ProcessingId[] values()
for (HL7ProcessingId c : HL7ProcessingId.values()) System.out.println(c);
public static HL7ProcessingId 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 © 2010–2020. All rights reserved.