Skip to content

Package: OwlapiOntoDriverProperties

OwlapiOntoDriverProperties

nameinstructionbranchcomplexitylinemethod
OwlapiOntoDriverProperties()
M: 6 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package cz.cvut.kbss.ontodriver.owlapi.config;
2:
3: public abstract class OwlapiOntoDriverProperties {
4:
5: private OwlapiOntoDriverProperties() {
6: throw new AssertionError();
7: }
8:
9: /**
10: * Represents location of a OWLAPI mapping file.
11: * <p>
12: * This file is used to map logical IRIs of ontologies to their physical locations, e.g. in case they are not
13: * accessible online, but are stored in files locally.
14: */
15: public static final String MAPPING_FILE_LOCATION = "cz.cvut.kbss.ontodriver.owlapi.mappingFile";
16:
17: /**
18: * Delimits IRI mappings in the mapping file.
19: *
20: * @see #MAPPING_FILE_LOCATION
21: */
22: public static final String IRI_MAPPING_DELIMITER = "cz.cvut.kbss.ontodriver.owlapi.mapping-delimiter";
23:
24: /**
25: * When set to true, the driver will write the content of the ontology into its file after commit.
26: */
27: public static final String WRITE_ON_COMMIT = "cz.cvut.kbss.ontodriver.owlapi.writeOnCommit";
28:
29: /**
30: * Default IRI mapping delimiter.
31: *
32: * @see #IRI_MAPPING_DELIMITER
33: */
34: public static final String DEFAULT_IRI_MAPPING_DELIMITER = ">";
35: }