public enum UserControlAction extends Enum<UserControlAction>
| Enum Constant and Description |
|---|
ADD
Add something
|
DELETE
Delete something
|
DISPLAY
Display something
|
EDIT
Change something
|
| Modifier and Type | Method and Description |
|---|---|
static UserControlAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserControlAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserControlAction ADD
public static final UserControlAction DELETE
public static final UserControlAction EDIT
public static final UserControlAction DISPLAY
public static UserControlAction[] values()
for (UserControlAction c : UserControlAction.values()) System.out.println(c);
public static UserControlAction 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 © 2008–2018. All rights reserved.