public enum ExecutionMode extends Enum<ExecutionMode>
Enum Constant and Description |
---|
EXHAUSTIVE
Draw parameter instances in highest-overall-probability order.
|
MONTE_CARLO
Draw parameter instances at random.
|
Modifier and Type | Field and Description |
---|---|
static String |
DESC_EXHAUSTIVE
The string representation of the exhaustive method.
|
static String |
DESC_MONTE_CARLO
The string representation of the monte-carlo method.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionMode |
forString(String text)
Gets the execution mode associated with the given text.
|
String |
getFactoryName()
Gets the parameter assignment generator factory name for a given execution
name.
|
String |
toString() |
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode MONTE_CARLO
public static final ExecutionMode EXHAUSTIVE
public static final String DESC_MONTE_CARLO
public static final String DESC_EXHAUSTIVE
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode 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 toString()
toString
in class Enum<ExecutionMode>
public static ExecutionMode forString(String text)
text
- the text (retrievable via toString())public String getFactoryName()
Copyright © 2012. All Rights Reserved.