public enum ResolutionState extends Enum<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 |
---|---|
String |
toString() |
static ResolutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionState COMPLETED
public static final ResolutionState INCOMPLETE
public static final ResolutionState APPROVED
public static final ResolutionState REJECTED
public static ResolutionState[] values()
for (ResolutionState c : ResolutionState.values()) System.out.println(c);
public static 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 nullpublic String toString()
toString
in class Enum<ResolutionState>
Copyright © 2010–2016. All rights reserved.