public enum ActivityState extends Enum<ActivityState>
Enum Constant and Description |
---|
ACCEPTED |
ALLOCATED |
DEFAULT |
RE_RESERVED |
REJECTED |
RESERVED |
SKIPPED |
Modifier and Type | Method and Description |
---|---|
static ActivityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityState DEFAULT
public static final ActivityState ACCEPTED
public static final ActivityState SKIPPED
public static final ActivityState REJECTED
public static final ActivityState ALLOCATED
public static final ActivityState RESERVED
public static final ActivityState RE_RESERVED
public static ActivityState[] values()
for (ActivityState c : ActivityState.values()) System.out.println(c);
public static ActivityState 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–2024 Apache Software Foundation. All rights reserved.