public static enum BoxTaskAssignment.ResolutionState extends Enum<BoxTaskAssignment.ResolutionState>
Enum Constant and Description |
---|
APPROVED
The task assignment has been approved.
|
COMPLETED
The task assignment has been completed.
|
INCOMPLETE
The task assignment is incomplete.
|
REJECTED
The task assignment has been rejected.
|
Modifier and Type | Method and Description |
---|---|
static BoxTaskAssignment.ResolutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxTaskAssignment.ResolutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxTaskAssignment.ResolutionState COMPLETED
public static final BoxTaskAssignment.ResolutionState INCOMPLETE
public static final BoxTaskAssignment.ResolutionState APPROVED
public static final BoxTaskAssignment.ResolutionState REJECTED
public static BoxTaskAssignment.ResolutionState[] values()
for (BoxTaskAssignment.ResolutionState c : BoxTaskAssignment.ResolutionState.values()) System.out.println(c);
public static BoxTaskAssignment.ResolutionState 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 null