public enum TodoColumn extends Enum<TodoColumn>
Enum Constant and Description |
---|
FINISHED
finished date
|
ID
todo title
|
LOCKED_BY
allocated to
|
MODEL_INSTANCE_ID
process id
|
STARTED
issued date
|
STATUS
todo status
|
TASK_NAME
task name
|
TITLE
todo id
|
TYPE
todo type
|
Modifier and Type | Method and Description |
---|---|
static TodoColumn |
valueOf(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(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 © 2007-2020 Whitestein Technologies. All Rights Reserved.