public enum DashboardMode extends Enum<DashboardMode>
| Enum Constant and Description |
|---|
DASHBOARD_MODULE_DISABLED |
DATA_COLLECTION_DISABLED |
ENABLED |
| Modifier and Type | Method and Description |
|---|---|
static DashboardMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DashboardMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DashboardMode DASHBOARD_MODULE_DISABLED
public static final DashboardMode DATA_COLLECTION_DISABLED
public static final DashboardMode ENABLED
public static DashboardMode[] values()
for (DashboardMode c : DashboardMode.values()) System.out.println(c);
public static DashboardMode 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 nullCopyright © 2019. All rights reserved.