-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSKOSFormatExt.java
More file actions
64 lines (49 loc) · 2.19 KB
/
SKOSFormatExt.java
File metadata and controls
64 lines (49 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package org.semanticweb.skosapibinding;
import org.semanticweb.owlapi.formats.ManchesterSyntaxDocumentFormatFactory;
import org.semanticweb.owlapi.formats.OWLXMLDocumentFormatFactory;
import org.semanticweb.owlapi.formats.RDFXMLDocumentFormatFactory;
import org.semanticweb.owlapi.formats.TurtleDocumentFormatFactory;
import org.semanticweb.owlapi.model.OWLDocumentFormat;
import org.semanticweb.owlapi.model.OWLDocumentFormatFactory;
import org.semanticweb.skos.SKOSFormat;
import org.semanticweb.skos.SKOSUnkownFormatException;
/*
* Copyright (C) 2007, University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate. Authorship
* of the modifications may be determined from the ChangeLog placed at
* the end of this file.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Author: Simon Jupp<br>
* Date: Aug 27, 2008<br>
* The University of Manchester<br>
* Bio-Health Informatics Group<br>
*/
public enum SKOSFormatExt implements SKOSFormat {
// RDFXML(new OWLXMLVocabulary());
RDFXML(new RDFXMLDocumentFormatFactory()) ,
TURTRLE(new TurtleDocumentFormatFactory()),
OWLXML(new OWLXMLDocumentFormatFactory()),
MOS(new ManchesterSyntaxDocumentFormatFactory());
private OWLDocumentFormatFactory factory;
SKOSFormatExt(OWLDocumentFormatFactory factory) {
this.factory=factory;
}
public OWLDocumentFormat getFormat() throws SKOSUnkownFormatException {
return factory.createFormat();
}
}