org.eclipse.rdf4j.sail.spin.config.SpinSailSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-sail-spin Show documentation
Show all versions of rdf4j-sail-spin Show documentation
The SPIN SAIL adds constraint checking and inferencing using SPIN to a base SAIL.
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*******************************************************************************/
package org.eclipse.rdf4j.sail.spin.config;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.impl.SimpleValueFactory;
/**
* Vocabulary constants for RDF-based configuration of the SpinSail.
*
* @author Jeen Broekstra
*/
public class SpinSailSchema {
/**
* The SpinSail schema namespace ( http://www.openrdf.org/config/sail/spin#).
*/
public static final String NAMESPACE = "http://www.openrdf.org/config/sail/spin#";
/**
* http://www.openrdf.org/config/sail/spin#axiomClosureNeeded
*/
public static final IRI AXIOM_CLOSURE_NEEDED = create("axiomClosureNeeded");
public static final IRI VALIDATE_CONSTRAINTS = create("validateConstraints");
private static final IRI create(String localName) {
return SimpleValueFactory.getInstance().createIRI(NAMESPACE, localName);
}
private SpinSailSchema() {
}
;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy