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