public static enum Parameters.SCHMethod extends java.lang.Enum<Parameters.SCHMethod>
| Enum Constant and Description |
|---|
DATA_SCH |
FCFS_SCH |
INVALID_SCH |
MAXMIN_SCH |
MCT_SCH |
MINMIN_SCH |
STATIC_SCH |
| Modifier and Type | Method and Description |
|---|---|
static Parameters.SCHMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parameters.SCHMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameters.SCHMethod MAXMIN_SCH
public static final Parameters.SCHMethod MINMIN_SCH
public static final Parameters.SCHMethod MCT_SCH
public static final Parameters.SCHMethod DATA_SCH
public static final Parameters.SCHMethod STATIC_SCH
public static final Parameters.SCHMethod FCFS_SCH
public static final Parameters.SCHMethod INVALID_SCH
public static Parameters.SCHMethod[] values()
for (Parameters.SCHMethod c : Parameters.SCHMethod.values()) System.out.println(c);
public static Parameters.SCHMethod 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