public enum EnumCurrentTreatmentStatus extends java.lang.Enum<EnumCurrentTreatmentStatus>
| Enum Constant and Description |
|---|
COMPLETED
The COMPLETED.
|
NOT_STARTED
The NOT_STARTED.
|
ON_BREAK
The ON_BREAK.
|
ON_TREATMENT
The ON_TREATMENT.
|
STOPPED
The STOPPED.
|
SUSPENDED
The SUSPENDED.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCurrentTreatmentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCurrentTreatmentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCurrentTreatmentStatus NOT_STARTED
public static final EnumCurrentTreatmentStatus ON_TREATMENT
public static final EnumCurrentTreatmentStatus ON_BREAK
public static final EnumCurrentTreatmentStatus SUSPENDED
public static final EnumCurrentTreatmentStatus STOPPED
public static final EnumCurrentTreatmentStatus COMPLETED
public static EnumCurrentTreatmentStatus[] values()
for (EnumCurrentTreatmentStatus c : EnumCurrentTreatmentStatus.values()) System.out.println(c);
public static EnumCurrentTreatmentStatus 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()