|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Configuration.DirectBlockingType>
org.semanticweb.HermiT.Configuration.DirectBlockingType
public static enum Configuration.DirectBlockingType
Sets the blocking type used by HermiT. This can be combined with settings for the blocking strategy (anywhere or ancestor or core blocking).
Enum Constant Summary | |
---|---|
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). |
Method Summary | |
---|---|
static Configuration.DirectBlockingType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Configuration.DirectBlockingType SINGLE
public static final Configuration.DirectBlockingType PAIR_WISE
public static final Configuration.DirectBlockingType OPTIMAL
Method Detail |
---|
public static Configuration.DirectBlockingType[] values()
for (Configuration.DirectBlockingType c : Configuration.DirectBlockingType.values()) System.out.println(c);
public static Configuration.DirectBlockingType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |