com.adobe.epubcheck.vocab.DCMESVocab Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epubcheck Show documentation
Show all versions of epubcheck Show documentation
EPUBCheck is a tool to validate the conformance of EPUB publications against
the EPUB specifications. EPUBCheck can be run as a standalone command-line tool or used
as a Java library.
package com.adobe.epubcheck.vocab;
public final class DCMESVocab
{
public static final String URI = "http://purl.org/dc/elements/1.1/";
public static final EnumVocab VOCAB = new EnumVocab(PROPERTIES.class, URI, "dc");
public static enum PROPERTIES
{
CONTRIBUTOR,
COVERAGE,
CREATOR,
DATE,
DESCRIPTION,
FORMAT,
IDENTIFIER,
LANGUAGE,
PUBLISHER,
RELATION,
RIGHTS,
SOURCE,
SUBJECT,
TITLE,
TYPE;
}
private DCMESVocab() {}
}