public static enum Configuration.DirectBlockingType extends Enum<Configuration.DirectBlockingType>
| Enum Constant and Description |
|---|
OPTIMAL
Chooses the optimal blocking.
|
PAIR_WISE
Forces HermiT to use pairwise blocking even if the ontology does not require that (contains no inverses).
|
SINGLE
Forces HermiT to use single blocking even if the ontology is not suitable for single blocking (contains inverse roles).
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.DirectBlockingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.DirectBlockingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.DirectBlockingType SINGLE
public static final Configuration.DirectBlockingType PAIR_WISE
public static final Configuration.DirectBlockingType OPTIMAL
public static Configuration.DirectBlockingType[] values()
for (Configuration.DirectBlockingType c : Configuration.DirectBlockingType.values()) System.out.println(c);
public static Configuration.DirectBlockingType 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.