public enum TaskListItemPlacement extends Enum<TaskListItemPlacement>
| Enum Constant and Description |
|---|
AS_IS |
COMPLETE_NESTED_TO_NON_TASK |
COMPLETE_TO_NON_TASK |
INCOMPLETE_FIRST |
INCOMPLETE_NESTED_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static TaskListItemPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskListItemPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskListItemPlacement AS_IS
public static final TaskListItemPlacement INCOMPLETE_FIRST
public static final TaskListItemPlacement INCOMPLETE_NESTED_FIRST
public static final TaskListItemPlacement COMPLETE_TO_NON_TASK
public static final TaskListItemPlacement COMPLETE_NESTED_TO_NON_TASK
public static TaskListItemPlacement[] values()
for (TaskListItemPlacement c : TaskListItemPlacement.values()) System.out.println(c);
public static TaskListItemPlacement 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 © 2019. All rights reserved.