public enum TodoColumn extends java.lang.Enum<TodoColumn>
| Enum Constant and Description | 
|---|
| FINISHEDfinished date | 
| IDtodo title | 
| LOCKED_BYallocated to | 
| MODEL_INSTANCE_IDprocess id | 
| STARTEDissued date | 
| STATUStodo status | 
| TASK_NAMEtask name | 
| TITLEtodo id | 
| TYPEtodo type | 
| Modifier and Type | Method and Description | 
|---|---|
| static TodoColumn | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static TodoColumn[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TodoColumn ID
public static final TodoColumn MODEL_INSTANCE_ID
public static final TodoColumn TITLE
public static final TodoColumn STATUS
public static final TodoColumn TYPE
public static final TodoColumn STARTED
public static final TodoColumn FINISHED
public static final TodoColumn LOCKED_BY
public static final TodoColumn TASK_NAME
public static TodoColumn[] values()
for (TodoColumn c : TodoColumn.values()) System.out.println(c);
public static TodoColumn valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2007-2020 Whitestein Technologies. All Rights Reserved.