public static enum TaskState.Priority extends Enum<TaskState.Priority>
| Modifier and Type | Method and Description |
|---|---|
String |
queue() |
static TaskState.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskState.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskState.Priority LOW
public static final TaskState.Priority HIGH
public static TaskState.Priority[] values()
for (TaskState.Priority c : TaskState.Priority.values()) System.out.println(c);
public static TaskState.Priority 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 nullpublic String queue()
Copyright © 2017 Grakn Labs Ltd. All rights reserved.