be.destin.skos.core
Enum SchemeFactoryType

java.lang.Object
  extended by java.lang.Enum<SchemeFactoryType>
      extended by be.destin.skos.core.SchemeFactoryType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SchemeFactoryType>

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

Author:
Christophe Dupriez

Enum Constant Summary
BUNDLE
           
DYNSPARQL
           
DYNSQL
           
ENUM
           
FILES
           
METASCHEME
           
OWL
           
RDF
           
SELECTION
           
SKOS
           
SPARQL
           
SQL
           
TAB
           
XML
           
 
Method Summary
static java.lang.String list()
           
static SchemeFactoryType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SchemeFactoryType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SQL

public static final SchemeFactoryType SQL

DYNSQL

public static final SchemeFactoryType DYNSQL

SPARQL

public static final SchemeFactoryType SPARQL

DYNSPARQL

public static final SchemeFactoryType DYNSPARQL

OWL

public static final SchemeFactoryType OWL

XML

public static final SchemeFactoryType XML

RDF

public static final SchemeFactoryType RDF

SKOS

public static final SchemeFactoryType SKOS

TAB

public static final SchemeFactoryType TAB

ENUM

public static final SchemeFactoryType ENUM

FILES

public static final SchemeFactoryType FILES

BUNDLE

public static final SchemeFactoryType BUNDLE

SELECTION

public static final SchemeFactoryType SELECTION

METASCHEME

public static final SchemeFactoryType METASCHEME
Method Detail

values

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

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

valueOf

public static SchemeFactoryType 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
java.lang.NullPointerException - if the argument is null

list

public static java.lang.String list()