public enum ViewName extends Enum<ViewName>
| Enum Constant and Description |
|---|
AUTHOR |
CATEGORY |
DASHBOARD |
DEVICE |
EXCEPTION |
LOG |
TEST |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ViewName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewName AUTHOR
public static final ViewName CATEGORY
public static final ViewName DASHBOARD
public static final ViewName DEVICE
public static final ViewName EXCEPTION
public static final ViewName LOG
public static final ViewName TEST
public static ViewName[] values()
for (ViewName c : ViewName.values()) System.out.println(c);
public static ViewName 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 © 2020. All rights reserved.