org.semanticweb.HermiT.cli.constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.semanticweb.hermit Show documentation
Show all versions of org.semanticweb.hermit Show documentation
HermiT is reasoner for ontologies written using the Web Ontology Language (OWL). Given an OWL file, HermiT can determine whether or not the ontology is consistent, identify subsumption relationships between classes, and much more.
This is the maven build of HermiT and is designed for people who wish to use HermiT from within the OWL API. It is now versioned in the main HermiT version repository, although not officially supported by the HermiT developers.
The version number of this package is a composite of the HermiT version and a value representing the OWLAPI release it is compatible with. Note that the group id for the upstream HermiT is com.hermit-reasoner, while this fork is released under net.sourceforge.owlapi.
This fork exists to allow HermiT users to use newer OWLAPI versions than the ones supported by the original HermiT codebase.
This package includes the Jautomata library (http://jautomata.sourceforge.net/), and builds with it directly. This library appears to be no longer under active development, and so a "fork" seems appropriate. No development is intended or anticipated on this code base.
The newest version!
package org.semanticweb.HermiT.cli;
class constants {
protected static final int
kTime=1000,
kDumpClauses=1001,
kDumpRoleBox=1002,
kDirectBlock=1003,
kBlockStrategy=1004,
kBlockCache=1005,
kExpansion=1006,
kBase=1007,
kParser=1008,
kDefaultPrefix=1009,
kDumpPrefixes=1010,
kTaxonomy=1011,
kIgnoreUnsupportedDatatypes=1012,
kPremise=1013,
kConclusion=1014,
kNoInconsistentException=1015;
protected static final String versionString=versionString();
static String versionString() {
String version=CommandLine.class.getPackage().getImplementationVersion();
if (version==null)
version="";
return version;
}
protected static final String usageString="Usage: hermit [OPTION]... IRI...";
protected static final String[] helpHeader={
"Perform reasoning on each OWL ontology IRI.",
"Example: java -jar Hermit.jar -dsowl:Thing http://www.co-ode.org/ontologies/pizza/2005/05/16/pizza.owl",
" (prints direct subclasses of owl:Thing within the pizza ontology)",
"Example: java -jar Hermit.jar --premise=http://km.aifb.uni-karlsruhe.de/projects/owltests/index.php/Special:GetOntology/New-Feature-DisjointObjectProperties-002?m=p --conclusion=http://km.aifb.uni-karlsruhe.de/projects/owltests/index.php/Special:GetOntology/New-Feature-DisjointObjectProperties-002?m=c --checkEntailment",
" (checks whether the conclusion ontology is entailed by the premise ontology)",
"",
"Both relative and absolute ontology IRIs can be used. Relative IRIs",
"are resolved with respect to the current directory (i.e. local file",
"names are valid IRIs); this behavior can be changed with the '--base'",
"option.",
"",
"Classes and properties are identified using functional-syntax-style",
"identifiers: names not containing a colon are resolved against the",
"ontology's default prefix; otherwise the portion of the name",
"preceding the colon is treated as a prefix prefix. Use of",
"prefixes can be controlled using the -p, -N, and --prefix",
"options. Alternatively, classes and properties can be identified with",
"full IRIs by enclosing the IRI in .",
"",
"By default, ontologies are simply retrieved and parsed. For more",
"interesting reasoning, set one of the -c/-k/-s/-S/-e/-U options."
};
protected static final String[] footer={
"HermiT is a product of Oxford University.",
"Visit for details."
};
protected static final String
kMisc="Miscellaneous",
kActions="Actions",
kParsing="Parsing and loading",
kPrefixes="Prefix name and IRI",
kAlgorithm="Algorithm settings (expert users only!)",
kInternals="Internals and debugging (unstable)";
}