01: /*
02: * LICENSE INFORMATION
03: * Copyright 2005-2007 by FZI (http://www.fzi.de).
04: * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05: * <OWNER> = Max Völkel
06: * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07: * <YEAR> = 2007
08: *
09: * Project information at http://semweb4j.org/rdf2go
10: */
11: package org.ontoware.rdf2go;
12:
13: public enum Reasoning {
14:
15: /** as defined by RDF Semantics or as implemented in reality? ;-) */
16: rdfs,
17:
18: /** OWL-DL */
19: owl,
20:
21: /** No reasoning */
22: none,
23:
24: /** an experimental mix */
25: rdfsAndOwl
26: }
|