public static enum Configuration.ExistentialStrategyType extends Enum<Configuration.ExistentialStrategyType>
| Enum Constant and Description |
|---|
CREATION_ORDER
Strategy for expanding all existentials on the oldest node in the tableau with unexpanded existentials.
|
EL
For EL ontologies this existential strategy can be set to use a deterministic version of individual
reuse that behaves similar to EL-style algorithms.
|
INDIVIDUAL_REUSE
Individual reuse tries to reuse existing individuals first before creating a fresh successor.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.ExistentialStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.ExistentialStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.ExistentialStrategyType CREATION_ORDER
public static final Configuration.ExistentialStrategyType INDIVIDUAL_REUSE
public static final Configuration.ExistentialStrategyType EL
public static Configuration.ExistentialStrategyType[] values()
for (Configuration.ExistentialStrategyType c : Configuration.ExistentialStrategyType.values()) System.out.println(c);
public static Configuration.ExistentialStrategyType 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 © 2017. All Rights Reserved.