public enum MethodEnum extends Enum<MethodEnum>
| Enum Constant and Description |
|---|
TRACK |
TREATMENT |
TREATMENT_WITH_CONFIG |
TREATMENTS |
TREATMENTS_WITH_CONFIG |
| Modifier and Type | Method and Description |
|---|---|
String |
getMethod() |
static MethodEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodEnum TREATMENT
public static final MethodEnum TREATMENTS
public static final MethodEnum TREATMENT_WITH_CONFIG
public static final MethodEnum TREATMENTS_WITH_CONFIG
public static final MethodEnum TRACK
public static MethodEnum[] values()
for (MethodEnum c : MethodEnum.values()) System.out.println(c);
public static MethodEnum 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 getMethod()
Copyright © 2021. All rights reserved.