All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jena.sparql.vocabulary.EARL Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.jena.sparql.vocabulary;
 
import org.apache.jena.rdf.model.* ;
 
/**
 * Vocabulary definitions from EARL.rdf 
 * Auto-generated by schemagen 
 */
public class EARL {
    /** 

The RDF model that holds the vocabulary terms

*/ private static Model m_model = ModelFactory.createDefaultModel(); /**

The namespace of the vocabulary as a string

*/ public static final String NS = "http://www.w3.org/ns/earl#"; /**

The namespace of the vocabulary as a string

* @see #NS */ public static String getURI() {return NS;} /**

The namespace of the vocabulary as a resource

*/ public static final Resource NAMESPACE = m_model.createResource( NS ); /**

assertor of an assertion

*/ public static final Property assertedBy = m_model.createProperty( "http://www.w3.org/ns/earl#assertedBy" ); /**

additional warnings or error messages in a human-readable form

*/ public static final Property info = m_model.createProperty( "http://www.w3.org/ns/earl#info" ); /**

assertor that is primarily responsible for performing the test

*/ public static final Property mainAssertor = m_model.createProperty( "http://www.w3.org/ns/earl#mainAssertor" ); /**

mode in which the test was performed

*/ public static final Property mode = m_model.createProperty( "http://www.w3.org/ns/earl#mode" ); /**

outcome of performing the test

*/ public static final Property outcome = m_model.createProperty( "http://www.w3.org/ns/earl#outcome" ); /**

location within a test subject that are most relevant to a test result

*/ public static final Property pointer = m_model.createProperty( "http://www.w3.org/ns/earl#pointer" ); /**

result of an assertion

*/ public static final Property result = m_model.createProperty( "http://www.w3.org/ns/earl#result" ); /**

test subject of an assertion

*/ public static final Property subject = m_model.createProperty( "http://www.w3.org/ns/earl#subject" ); /**

test criterion of an assertion

*/ public static final Property test = m_model.createProperty( "http://www.w3.org/ns/earl#test" ); /**

a statement that embodies the results of a test

*/ public static final Resource Assertion = m_model.createResource( "http://www.w3.org/ns/earl#Assertion" ); /**

an entity such as a person, a software tool, an organization, or any other * grouping that carries out a test collectively

*/ public static final Resource Assertor = m_model.createResource( "http://www.w3.org/ns/earl#Assertor" ); /**

the class of outcomes to denote an undetermined outcome

*/ public static final Resource CannotTell = m_model.createResource( "http://www.w3.org/ns/earl#CannotTell" ); /**

the class of outcomes to denote failing a test

*/ public static final Resource Fail = m_model.createResource( "http://www.w3.org/ns/earl#Fail" ); /**

the class of outcomes to denote the test is not applicable

*/ public static final Resource NotApplicable = m_model.createResource( "http://www.w3.org/ns/earl#NotApplicable" ); /**

the class of outcomes to denote the test has not been carried out

*/ public static final Resource NotTested = m_model.createResource( "http://www.w3.org/ns/earl#NotTested" ); /**

a discrete value that describes a resulting condition from carrying out the * test

*/ public static final Resource OutcomeValue = m_model.createResource( "http://www.w3.org/ns/earl#OutcomeValue" ); /**

the class of outcomes to denote passing a test

*/ public static final Resource Pass = m_model.createResource( "http://www.w3.org/ns/earl#Pass" ); /**

any piece of software such as an authoring tool, browser, or evaluation tool

*/ public static final Resource Software = m_model.createResource( "http://www.w3.org/ns/earl#Software" ); /**

an atomic test, usually one that is a partial test for a requirement

*/ public static final Resource TestCase = m_model.createResource( "http://www.w3.org/ns/earl#TestCase" ); /**

a testable statement, usually one that can be passed or failed

*/ public static final Resource TestCriterion = m_model.createResource( "http://www.w3.org/ns/earl#TestCriterion" ); /**

describes how a test was carried out

*/ public static final Resource TestMode = m_model.createResource( "http://www.w3.org/ns/earl#TestMode" ); /**

a higher-level requirement that is tested by executing one or more sub-tests

*/ public static final Resource TestRequirement = m_model.createResource( "http://www.w3.org/ns/earl#TestRequirement" ); /**

the actual result of performing the test

*/ public static final Resource TestResult = m_model.createResource( "http://www.w3.org/ns/earl#TestResult" ); /**

the class of things that have been tested against some test criterion

*/ public static final Resource TestSubject = m_model.createResource( "http://www.w3.org/ns/earl#TestSubject" ); public static final Resource automatic = m_model.createResource( "http://www.w3.org/ns/earl#automatic" ); public static final Resource cantTell = m_model.createResource( "http://www.w3.org/ns/earl#cantTell" ); public static final Resource failed = m_model.createResource( "http://www.w3.org/ns/earl#failed" ); public static final Resource inapplicable = m_model.createResource( "http://www.w3.org/ns/earl#inapplicable" ); public static final Resource manual = m_model.createResource( "http://www.w3.org/ns/earl#manual" ); public static final Resource passed = m_model.createResource( "http://www.w3.org/ns/earl#passed" ); public static final Resource semiAuto = m_model.createResource( "http://www.w3.org/ns/earl#semiAuto" ); public static final Resource undisclosed = m_model.createResource( "http://www.w3.org/ns/earl#undisclosed" ); public static final Resource unknownMode = m_model.createResource( "http://www.w3.org/ns/earl#unknownMode" ); public static final Resource untested = m_model.createResource( "http://www.w3.org/ns/earl#untested" ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy