public enum TaskActionType extends Enum<TaskActionType>
| Enum Constant and Description |
|---|
ASSIGN |
COMPLETE |
INCOMPLETE |
START |
STOP |
UPDATE_DUE_DATE |
UPDATE_PRIVATE |
UPDATE_TEXT |
| Modifier and Type | Method and Description |
|---|---|
static TaskActionType |
getByName(String value) |
String |
toString() |
static TaskActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskActionType START
public static final TaskActionType STOP
public static final TaskActionType ASSIGN
public static final TaskActionType COMPLETE
public static final TaskActionType INCOMPLETE
public static final TaskActionType UPDATE_TEXT
public static final TaskActionType UPDATE_DUE_DATE
public static final TaskActionType UPDATE_PRIVATE
public static TaskActionType[] values()
for (TaskActionType c : TaskActionType.values()) System.out.println(c);
public static TaskActionType 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<TaskActionType>public static TaskActionType getByName(String value)
Copyright © 2014. All Rights Reserved.