📄 onteventsvocab.java
字号:
/*****************************************************************************
* Source code information
* -----------------------
* Package Jena 2
* Web site http://jena.sourceforge.net
* Created 13 Aug 2004 15:35
* Filename $RCSfile: OntEventsVocab.java,v $
* Revision $Revision: 1.6 $
* Release status @releaseStatus@ $State: Exp $
*
* Last modified on $Date: 2007/01/02 11:49:32 $
* by $Author: andy_seaborne $
*
* (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
* (see footer for full conditions)
*****************************************************************************/
// Package
///////////////////////////////////////
package com.hp.hpl.jena.vocabulary;
// Imports
///////////////////////////////////////
import com.hp.hpl.jena.rdf.model.*;
import com.hp.hpl.jena.ontology.*;
/**
* Vocabulary definitions from file:vocabularies/ont-event.rdf
* @author Auto-generated by jena.schemagen on 13 Aug 2004 15:35
*/
public class OntEventsVocab {
/** <p>The ontology model that holds the vocabulary terms</p> */
private static OntModel m_model = ModelFactory.createOntologyModel( OntModelSpec.OWL_MEM, null );
/** <p>The namespace of the vocabulary as a string ({@value})</p> */
public static final String NS = "http://jena.hpl.hp.com/schemas/2003/03/ont-event#";
/** <p>The namespace of the vocabulary as a string</p>
* @see #NS */
public static String getURI() {return NS;}
/** <p>The namespace of the vocabulary as a resource</p> */
public static final Resource NAMESPACE = m_model.createResource( NS );
// Vocabulary properties
///////////////////////////
// Vocabulary classes
///////////////////////////
/** <p>A class representing observable events in an ontology model</p> */
public static final OntClass OntEvent = m_model.createClass( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#OntEvent" );
// Vocabulary individuals
///////////////////////////
/** <p>Event representing the declaration of one ontology individual being related
* to another by some named predicate.</p>
*/
public static final Individual related = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#related", OntEvent );
/** <p>Event representing the declaration of a property as having a given class,
* datatype or datarange as the range</p>
*/
public static final Individual range = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#range", OntEvent );
/** <p>Event representing the declaration of a resource as an ontology Class.</p> */
public static final Individual classDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#classDeclaration", OntEvent );
/** <p>Event representing the declaration that a restriction applies to a given property</p> */
public static final Individual onProperty = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#onProperty", OntEvent );
/** <p>Event representing the declaration of that a qualified restriction has the
* given class or datatype for the qualification restriction</p>
*/
public static final Individual hasClassQ = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#hasClassQ", OntEvent );
/** <p>Event representing the declaration of one class being the sub-class of another.</p> */
public static final Individual subClassOf = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#subClassOf", OntEvent );
/** <p>Event representing the declaration of a class expression being composed of
* a finite enumeration of identified individuals.</p>
*/
public static final Individual oneOf = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#oneOf", OntEvent );
/** <p>Event representing the declaration of a property as being the inverse of another
* property</p>
*/
public static final Individual inverseOf = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#inverseOf", OntEvent );
/** <p>Event representing the declaration of a resource of type owl:Ontology or daml:Ontology,
* representing meta-data about the ontology.</p>
*/
public static final Individual ontologyDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#ontologyDeclaration", OntEvent );
/** <p>Event representing the declaration of a property as being functional.</p> */
public static final Individual functionalPropertyDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#functionalPropertyDeclaration", OntEvent );
/** <p>Event representing the declaration that a restriction constrains the property
* to have a given value</p>
*/
public static final Individual hasValue = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#hasValue", OntEvent );
/** <p>Event representing the declaration of that a restriction has the given minimum
* cardinality on the restricted property</p>
*/
public static final Individual minCardinality = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#minCardinality", OntEvent );
/** <p>Event representing a label on an ontology element</p> */
public static final Individual label = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#label", OntEvent );
/** <p>Event representing the declaration of a class as being deprecated.</p> */
public static final Individual DeprecatedClass = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#DeprecatedClass", OntEvent );
/** <p>Event representing the declaration of a property as having a given class,
* datatype or datarange as the domain</p>
*/
public static final Individual domain = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#domain", OntEvent );
/** <p>Event representing the declaration of one class expression being disjoint
* with another.</p>
*/
public static final Individual disjointWith = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#disjointWith", OntEvent );
/** <p>Event representing the declaration that a restriction constrains at least
* one value of the property to have some class or datatype</p>
*/
public static final Individual someValuesFrom = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#someValuesFrom", OntEvent );
/** <p>Event representing the declaration that one ontology is imported into another
* ontology.</p>
*/
public static final Individual imports = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#imports", OntEvent );
/** <p>Event representing the declaration of a class expression being a union of
* class descriptions.</p>
*/
public static final Individual unionOf = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#unionOf", OntEvent );
/** <p>Event representing the declaration of an ontology property.</p> */
public static final Individual ontologyPropertyDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#ontologyPropertyDeclaration", OntEvent );
/** <p>Event representing the declaration of a property as being deprecated.</p> */
public static final Individual DeprecatedProperty = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#DeprecatedProperty", OntEvent );
/** <p>Event representing the declaration of a resource being a Restriction</p> */
public static final Individual restrictionDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#restrictionDeclaration", OntEvent );
/** <p>Event representing the declaration of a property as being symmetric</p> */
public static final Individual symmetricPropertyDeclaration = m_model.createIndividual( "http://jena.hpl.hp.com/schemas/2003/03/ont-event#symmetricPropertyDeclaration", OntEvent );
/** <p>Event representing the declaration of that a restriction has the given maximum
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -