public enum OperatingMode extends java.lang.Enum<OperatingMode>
Enum Constant and Description |
---|
MOVING_AVERAGE |
PREDICTIVE_MOVING_AVERAGE |
PREDICTIVE_MOVING_AVERAGE_WITH_LOGS |
RANDOM |
SNAPSHOT |
Modifier and Type | Method and Description |
---|---|
static OperatingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperatingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatingMode RANDOM
public static final OperatingMode SNAPSHOT
public static final OperatingMode MOVING_AVERAGE
public static final OperatingMode PREDICTIVE_MOVING_AVERAGE
public static final OperatingMode PREDICTIVE_MOVING_AVERAGE_WITH_LOGS
public static OperatingMode[] values()
for (OperatingMode c : OperatingMode.values()) System.out.println(c);
public static OperatingMode 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 nullCopyright © 2004-2014 The YAWL Foundation.