Skip to content

Package: SoqlConstants

SoqlConstants

nameinstructionbranchcomplexitylinemethod
SoqlConstants()
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.jopa.query.soql;
2:
3: /**
4: * Constants of the Semantic Object Query Language (SOQL).
5: */
6: class SoqlConstants {
7:
8: /**
9: * {@code DISTINCT} operator.
10: */
11: static final String DISTINCT = "DISTINCT";
12:
13: /**
14: * {@code IN} operator.
15: */
16: static final String IN = "IN";
17:
18: /**
19: * {@code NOT IN} operator.
20: */
21: static final String NOT_IN = "NOT IN";
22:
23: /**
24: * {@code NOT} operator.
25: */
26: static final String NOT = "NOT";
27:
28: /**
29: * SPARQL shortcut for {@code rdf:type} - {@code a}.
30: */
31: static final String RDF_TYPE = "a";
32:
33: private SoqlConstants() {
34: throw new AssertionError();
35: }
36: }