owltools.web
Enum OWLHandler.ResultType

java.lang.Object
  extended by java.lang.Enum<OWLHandler.ResultType>
      extended by owltools.web.OWLHandler.ResultType
All Implemented Interfaces:
Serializable, Comparable<OWLHandler.ResultType>
Enclosing class:
OWLHandler

public static enum OWLHandler.ResultType
extends Enum<OWLHandler.ResultType>


Enum Constant Summary
AXIOM
           
EDGE
           
ENTITY
           
ONTOLOGY
           
 
Method Summary
static OWLHandler.ResultType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OWLHandler.ResultType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AXIOM

public static final OWLHandler.ResultType AXIOM

ENTITY

public static final OWLHandler.ResultType ENTITY

EDGE

public static final OWLHandler.ResultType EDGE

ONTOLOGY

public static final OWLHandler.ResultType ONTOLOGY
Method Detail

values

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

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

valueOf

public static OWLHandler.ResultType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010-2011. All Rights Reserved.