| Modifier and Type | Method and Description |
|---|---|
static CaseType |
getByValue(java.lang.String input) |
java.lang.String |
getValue() |
static CaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseType DAY_CASE
public static final CaseType INPATIENT
public static CaseType[] values()
for (CaseType c : CaseType.values()) System.out.println(c);
public static CaseType 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()
public static CaseType getByValue(java.lang.String input)