All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.epubcheck.vocab.IndexVocab Maven / Gradle / Ivy

Go to download

EpubCheck is a tool to validate IDPF EPUB files. It can detect many types of errors in EPUB. OCF container structure, OPF and OPS mark-up, and internal reference consistency are checked. EpubCheck can be run as a standalone command-line tool, installed as a Java server-side web application or used as a Java library.

There is a newer version: 4.1.1
Show newest version
package com.adobe.epubcheck.vocab;

public class IndexVocab
{
  public static final String URI = "http://www.idpf.org/epub/vocab/structure/#";
  public static final EnumVocab VOCAB = new EnumVocab(EPUB_TYPES.class, URI);

  public static enum EPUB_TYPES
  {
    INDEX,
    INDEX_EDITOR_NOTE,
    INDEX_ENTRY,
    INDEX_ENTRY_LIST,
    INDEX_GROUP,
    INDEX_HEADNOTES,
    INDEX_LEGEND,
    INDEX_LOCATOR,
    INDEX_LOCATOR_LIST,
    INDEX_LOCATOR_RANGE,
    INDEX_TERM,
    INDEX_TERM_CATEGORIES,
    INDEX_TERM_CATEGORY,
    INDEX_XREF_PREFERRED,
    INDEX_XREF_RELATED;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy