com.github.anno4j.model.namespaces.CNT 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 Representing Content in RDF ontology (cnt:).
* See http://www.w3.org/TR/Content-in-RDF10/
*/
public class CNT {
/**
* Textual representation of the namespace.
*/
public final static String NS = "http://www.w3.org/2011/content#";
/**
* Textual prefix of the ontology.
*/
public final static String PREFIX = "cnt";
/**
* Refers to http://www.w3.org/TR/Content-in-RDF10/#ContentAsTextClass
* The cnt:ContentAsText class is a subclass of the cnt:Content class for any type of textual content.
*/
public final static String CONTENT_AS_TEXT = NS + "ContentAsText";
/**
* Refers to http://www.w3.org/TR/Content-in-RDF10/#charsProperty
* The character sequence of the given content.
*/
public final static String CHARS = NS + "chars";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy