public static enum ExecutionEngineFactory.ExecutionEngineType extends Enum<ExecutionEngineFactory.ExecutionEngineType>
| Enum Constant and Description |
|---|
DEFAULT |
PARTIAL_RECALL |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static ExecutionEngineFactory.ExecutionEngineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionEngineFactory.ExecutionEngineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionEngineFactory.ExecutionEngineType DEFAULT
public static final ExecutionEngineFactory.ExecutionEngineType SIMPLE
public static final ExecutionEngineFactory.ExecutionEngineType PARTIAL_RECALL
public static ExecutionEngineFactory.ExecutionEngineType[] values()
for (ExecutionEngineFactory.ExecutionEngineType c : ExecutionEngineFactory.ExecutionEngineType.values()) System.out.println(c);
public static ExecutionEngineFactory.ExecutionEngineType 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 nullCopyright © 2020. All rights reserved.