public static enum ListScheduling.Strategy extends java.lang.Enum<ListScheduling.Strategy>
Enum Constant and Description |
---|
EARLIEST_START_TIME |
LARGEST_PROC_TIME |
LEXICOGRAPHIC |
RANDOM |
Modifier and Type | Method and Description |
---|---|
static ListScheduling.Strategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListScheduling.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListScheduling.Strategy RANDOM
public static final ListScheduling.Strategy LEXICOGRAPHIC
public static final ListScheduling.Strategy LARGEST_PROC_TIME
public static final ListScheduling.Strategy EARLIEST_START_TIME
public static ListScheduling.Strategy[] values()
for (ListScheduling.Strategy c : ListScheduling.Strategy.values()) System.out.println(c);
public static ListScheduling.Strategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null