de.saar.chorus.domgraph.utool
Enum AbstractOptions.Operation

Object
  extended by Enum<AbstractOptions.Operation>
      extended by AbstractOptions.Operation
All Implemented Interfaces:
Serializable, Comparable<AbstractOptions.Operation>
Enclosing class:
AbstractOptions

public static enum AbstractOptions.Operation
extends Enum<AbstractOptions.Operation>


Enum Constant Summary
_displayCodecs
           
_helpOptions
           
_version
           
classify
           
convert
           
display
           
help
           
server
           
solvable
           
solve
           
 
Field Summary
 String longDescription
           
 boolean requiresInput
           
 boolean requiresOutput
           
 String shortDescription
           
 
Method Summary
static AbstractOptions.Operation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractOptions.Operation[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

solve

public static final AbstractOptions.Operation solve

solvable

public static final AbstractOptions.Operation solvable

convert

public static final AbstractOptions.Operation convert

classify

public static final AbstractOptions.Operation classify

display

public static final AbstractOptions.Operation display

server

public static final AbstractOptions.Operation server

help

public static final AbstractOptions.Operation help

_version

public static final AbstractOptions.Operation _version

_helpOptions

public static final AbstractOptions.Operation _helpOptions

_displayCodecs

public static final AbstractOptions.Operation _displayCodecs
Field Detail

shortDescription

public String shortDescription

longDescription

public String longDescription

requiresInput

public boolean requiresInput

requiresOutput

public boolean requiresOutput
Method Detail

values

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

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

valueOf

public static AbstractOptions.Operation 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