public enum DoctorIssueCategory extends Enum<DoctorIssueCategory>
Enum Constant and Description |
---|
CACHE_ERROR |
CRASH |
OTHER |
PERFORMANCE |
WRONG_OUTPUT |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static DoctorIssueCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoctorIssueCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoctorIssueCategory WRONG_OUTPUT
public static final DoctorIssueCategory CACHE_ERROR
public static final DoctorIssueCategory PERFORMANCE
public static final DoctorIssueCategory CRASH
public static final DoctorIssueCategory OTHER
public static DoctorIssueCategory[] values()
for (DoctorIssueCategory c : DoctorIssueCategory.values()) System.out.println(c);
public static DoctorIssueCategory 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 nullpublic String getName()