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