com.github.anno4j.model.namespaces.DC 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 Dublin Core ontology (dc:).
* See http://dublincore.org/documents/dcmi-terms/
*/
public class DC {
/**
* Textual representation of the namespace.
*/
public final static String NS = "http://purl.org/dc/elements/1.1/";
/**
* Textual prefix of the ontology.
*/
public final static String PREFIX = "dc";
/**
* Refers to http://dublincore.org/documents/dcmi-terms/#terms-format
* The file format, physical medium, or dimensions of the resource.
*/
public final static String FORMAT = NS + "format";
/**
* Refers to http://dublincore.org/documents/dcmi-terms/#terms-language
* A language of the resource.
*/
public final static String LANGUAGE = NS + "language";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy