public enum TasksMode extends Enum<TasksMode>
| Enum Constant and Description |
|---|
DEFAULT
For space level that is just defaulting to use what is set at global
admin level
|
LENIENT
Any task can be completed by any user who is able to modify a page or blog post
|
STRICT
Only the assignees (and the creator of the task) can complete tasks
|
| Modifier and Type | Method and Description |
|---|---|
static TasksMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TasksMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TasksMode DEFAULT
public static final TasksMode STRICT
public static final TasksMode LENIENT
public static TasksMode[] values()
for (TasksMode c : TasksMode.values()) System.out.println(c);
public static TasksMode 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 © 2021 Comala Technology Solutions, Inc.. All rights reserved.