|
From: Andreas K. <ka...@bs...> - 2016-04-14 13:25:18
|
package de.bsb_muenchen.bigdata.vocab; import com.bigdata.rdf.vocab.VocabularyDecl; import java.util.Arrays; import java.util.Collections; import java.util.Iterator; import org.openrdf.model.URI; import org.openrdf.model.impl.URIImpl; /** * This does not contain the complete RDVocab-Elements Ontology. It exclusively declares the * URIs most commonly used in the http://lod.b3kat.de-dataset * * @author Andreas Kahl<ka...@bs...> */ public class B3KatVocabularyDecl implements VocabularyDecl { static private final URI[] URIS = new URI[]{ new URIImpl("http://lod.b3kat.de/title/"), //Secondary namespaces for URI Inlining new URIImpl("http://lod.b3kat.de/bib/"), new URIImpl("http://lod.b3kat.de/isbn/"), new URIImpl("http://d-nb.info/gnd/"), //RISM-URIs new URIImpl("http://data.rism.info/id/rismid/"), new URIImpl("http://data.rism.info/id/rismauthorities/") }; @Override public Iterator<URI> values() { return Collections.unmodifiableList(Arrays.asList(URIS)).iterator(); } } |