org.semanticweb.owlapi.vocab
Enum DublinCoreVocabulary

java.lang.Object
  extended by java.lang.Enum<DublinCoreVocabulary>
      extended by org.semanticweb.owlapi.vocab.DublinCoreVocabulary
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DublinCoreVocabulary>

public enum DublinCoreVocabulary
extends java.lang.Enum<DublinCoreVocabulary>

Author: Matthew Horridge
The University Of Manchester
Bio-Health Informatics Group
Date: 09-Mar-2007


Enum Constant Summary
CONTRIBUTOR
           
COVERAGE
           
CREATOR
           
DATE
           
DESCRIPTION
           
FORMAT
           
IDENTIFIER
           
LANGUAGE
           
PUBLISHER
           
RELATION
           
RIGHTS
           
SOURCE
           
SUBJECT
           
TITLE
           
TYPE
           
 
Field Summary
static java.util.Set<java.net.URI> ALL_URIS
           
static java.lang.String NAME_SPACE
           
 
Method Summary
 IRI getIRI()
           
 java.lang.String getQName()
           
 java.lang.String getShortName()
           
 java.net.URI getURI()
           
 java.lang.String toString()
           
static DublinCoreVocabulary valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DublinCoreVocabulary[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTRIBUTOR

public static final DublinCoreVocabulary CONTRIBUTOR

COVERAGE

public static final DublinCoreVocabulary COVERAGE

CREATOR

public static final DublinCoreVocabulary CREATOR

DATE

public static final DublinCoreVocabulary DATE

DESCRIPTION

public static final DublinCoreVocabulary DESCRIPTION

FORMAT

public static final DublinCoreVocabulary FORMAT

IDENTIFIER

public static final DublinCoreVocabulary IDENTIFIER

LANGUAGE

public static final DublinCoreVocabulary LANGUAGE

PUBLISHER

public static final DublinCoreVocabulary PUBLISHER

RELATION

public static final DublinCoreVocabulary RELATION

RIGHTS

public static final DublinCoreVocabulary RIGHTS

SOURCE

public static final DublinCoreVocabulary SOURCE

SUBJECT

public static final DublinCoreVocabulary SUBJECT

TITLE

public static final DublinCoreVocabulary TITLE

TYPE

public static final DublinCoreVocabulary TYPE
Field Detail

NAME_SPACE

public static final java.lang.String NAME_SPACE
See Also:
Constant Field Values

ALL_URIS

public static final java.util.Set<java.net.URI> ALL_URIS
Method Detail

values

public static final DublinCoreVocabulary[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(DublinCoreVocabulary c : DublinCoreVocabulary.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static DublinCoreVocabulary valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getShortName

public java.lang.String getShortName()

getQName

public java.lang.String getQName()

getURI

public java.net.URI getURI()

getIRI

public IRI getIRI()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<DublinCoreVocabulary>