public enum EnumReportedValuesOrigin extends java.lang.Enum<EnumReportedValuesOrigin>
| Enum Constant and Description |
|---|
ELECTRONICALLY_RECORDED
The ELECTRONICALL y_ recorded.
|
MANUALLY_ENTERED_BY_OPERATOR
The MANUALL y_ entere d_ b y_ operator.
|
PLANNED_PARAMETER_VALUES
The PLANNE d_ paramete r_ values.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumReportedValuesOrigin |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumReportedValuesOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumReportedValuesOrigin MANUALLY_ENTERED_BY_OPERATOR
public static final EnumReportedValuesOrigin PLANNED_PARAMETER_VALUES
public static final EnumReportedValuesOrigin ELECTRONICALLY_RECORDED
public static EnumReportedValuesOrigin[] values()
for (EnumReportedValuesOrigin c : EnumReportedValuesOrigin.values()) System.out.println(c);
public static EnumReportedValuesOrigin 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()