public static enum Configuration.BlockingStrategyType extends Enum<Configuration.BlockingStrategyType>
| Enum Constant and Description |
|---|
ANCESTOR
Forces HermiT to use ancestor blocking.
|
ANYWHERE
Forces HermiT to use anywhere blocking.
|
COMPLEX_CORE
An approximate blocking strategy and HermiT validates whether the block is ok before terminating.
|
OPTIMAL
If the ontology contains nominals HermiT uses SIMPLE_CORE otherwise ANYWHERE.
|
SIMPLE_CORE
An approximate blocking strategy and HermiT validates whether the block is ok before terminating.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.BlockingStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.BlockingStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.BlockingStrategyType ANYWHERE
public static final Configuration.BlockingStrategyType ANCESTOR
public static final Configuration.BlockingStrategyType COMPLEX_CORE
public static final Configuration.BlockingStrategyType SIMPLE_CORE
public static final Configuration.BlockingStrategyType OPTIMAL
public static Configuration.BlockingStrategyType[] values()
for (Configuration.BlockingStrategyType c : Configuration.BlockingStrategyType.values()) System.out.println(c);
public static Configuration.BlockingStrategyType 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 © 2018. All rights reserved.