edu.unika.aifb.owltools
Enum DLPConvert.Format

java.lang.Object
  extended by java.lang.Enum<DLPConvert.Format>
      extended by edu.unika.aifb.owltools.DLPConvert.Format
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DLPConvert.Format>
Enclosing class:
DLPConvert

public static enum DLPConvert.Format
extends java.lang.Enum<DLPConvert.Format>

Specifies the different possible formats that dlpconvert is able to serialise set of rules in.


Enum Constant Summary
FLogic
          FLogic, can be directly used by OntoBroker and other FLogic-engines
Prolog
          The format directly usable by prolog implementations.
Rule
          The KAON2 Rules format
RuleML
          The RuleML format, as defined by http://www.xxx.de/xxx
 
Method Summary
static DLPConvert.Format valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DLPConvert.Format[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Prolog

public static final DLPConvert.Format Prolog
The format directly usable by prolog implementations. This is set as the standard format.


RuleML

public static final DLPConvert.Format RuleML
The RuleML format, as defined by http://www.xxx.de/xxx


Rule

public static final DLPConvert.Format Rule
The KAON2 Rules format


FLogic

public static final DLPConvert.Format FLogic
FLogic, can be directly used by OntoBroker and other FLogic-engines

Method Detail

values

public static final DLPConvert.Format[] 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(DLPConvert.Format c : DLPConvert.Format.values())
        System.out.println(c);

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

valueOf

public static DLPConvert.Format 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