com.github.anno4j.model.namespaces.RDFS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anno4j-core Show documentation
Show all versions of anno4j-core Show documentation
Read and write API for W3C Web Annotation Data Model (http://www.w3.org/TR/annotation-model/) and W3C Open Annotation Data Model (http://www.openannotation.org/spec/core/)
package com.github.anno4j.model.namespaces;
/**
* Ontology class for the Resource Description Framework Schema (rdfs:)
* See http://www.w3.org/TR/rdf-schema/
*/
public class RDFS {
/**
* Namespace for rdfs:
*/
public final static String NS = "http://www.w3.org/2000/01/rdf-schema#";
/**
* Refers to http://www.w3.org/TR/rdf-schema/#ch_resource
* All things described by RDF are called resources, and are instances of the class rdfs:Resource.
* This is the class of everything. All other classes are subclasses of this class. rdfs:Resource is an instance of rdfs:Class.
*/
public final static String RESOURCE = NS + "Resource";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy