public static enum Pages.Id extends Enum<Pages.Id>
| Enum Constant and Description |
|---|
ADMIN |
AVAILABILITY_ROSTER |
EMPLOYEES |
ROTATION |
SHIFT_ROSTER |
SKILLS |
SPOTS |
| Modifier and Type | Method and Description |
|---|---|
static Pages.Id |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Pages.Id[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pages.Id SHIFT_ROSTER
public static final Pages.Id AVAILABILITY_ROSTER
public static final Pages.Id ROTATION
public static final Pages.Id SKILLS
public static final Pages.Id SPOTS
public static final Pages.Id EMPLOYEES
public static final Pages.Id ADMIN
public static Pages.Id[] values()
for (Pages.Id c : Pages.Id.values()) System.out.println(c);
public static Pages.Id 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 © 2017–2019 JBoss by Red Hat. All rights reserved.