Skip to content

Package: SequenceType

SequenceType

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 24
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 3
100%
M: 0 C: 1
100%

Coverage

1: /**
2: * Copyright (C) 2016 Czech Technical University in Prague
3: *
4: * This program is free software: you can redistribute it and/or modify it under
5: * the terms of the GNU General Public License as published by the Free Software
6: * Foundation, either version 3 of the License, or (at your option) any
7: * later version.
8: *
9: * This program is distributed in the hope that it will be useful, but WITHOUT
10: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12: * details. You should have received a copy of the GNU General Public License
13: * along with this program. If not, see <http://www.gnu.org/licenses/>.
14: */
15: package cz.cvut.kbss.jopa.model.annotations;
16:
17: /**
18: * Defines types of sequence modeling in OWL.
19: *
20: * @author kremen
21: */
22: public enum SequenceType {
23:         /**
24:          * Used for simple (nonreferenced) sequences.
25:          *
26:          * This means that elements of the sequence are unique to the sequence owner
27:          * and are NOT shared with other sequences.
28:          *
29:          * TODO example
30:          */
31:         simple,
32:
33:         /**
34:          * Used for referenced sequences. This case is more general, but sequence
35:          * representation requires more space (linear in the original size)
36:          *
37:          * This means that elements of the sequence are not unique to the sequence
38:          * owner. Thus these elements might be referenced by other sequences.
39:          *
40:          * TODO example
41:          */
42:         referenced
43: }