Package: DriverConfigParam
DriverConfigParam
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DriverConfigParam(String, int, String) |
|
|
|
|
|
||||||||||||||||||||
static {...} |
|
|
|
|
|
||||||||||||||||||||
toString() |
|
|
|
|
|
Coverage
1: /*
2: * JOPA
3: * Copyright (C) 2023 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.ontodriver.config;
19:
20: /**
21: * Configuration parameters common to all OntoDrivers.
22: * <p>
23: * Based on {@link OntoDriverProperties}
24: */
25: public enum DriverConfigParam implements ConfigurationParameter {
26:
27: AUTO_COMMIT(OntoDriverProperties.CONNECTION_AUTO_COMMIT),
28: REASONER_FACTORY_CLASS(OntoDriverProperties.REASONER_FACTORY_CLASS),
29: /**
30: * @deprecated Ontology language should be set at persistence unit level. The driver uses language specified per
31: * {@link cz.cvut.kbss.ontodriver.model.Assertion}.
32: */
33: @Deprecated
34: ONTOLOGY_LANGUAGE(OntoDriverProperties.ONTOLOGY_LANGUAGE),
35: USE_TRANSACTIONAL_ONTOLOGY(OntoDriverProperties.USE_TRANSACTIONAL_ONTOLOGY),
36: MODULE_EXTRACTION_SIGNATURE(OntoDriverProperties.MODULE_EXTRACTION_SIGNATURE);
37:
38: private final String name;
39:
40: DriverConfigParam(String name) {
41: this.name = name;
42: }
43:
44: @Override
45: public String toString() {
46: return name;
47: }
48: }