ucl.physiol.neuroconstruct.neuroml
Enum LemsConstants.LemsOption

java.lang.Object
  extended by java.lang.Enum<LemsConstants.LemsOption>
      extended by ucl.physiol.neuroconstruct.neuroml.LemsConstants.LemsOption
All Implemented Interfaces:
Serializable, Comparable<LemsConstants.LemsOption>
Enclosing class:
LemsConstants

public static enum LemsConstants.LemsOption
extends Enum<LemsConstants.LemsOption>


Enum Constant Summary
EXECUTE_MODEL
           
GENERATE_GRAPH
           
GENERATE_NEURON
           
GENERATE_NINEML
           
NONE
           
 
Method Summary
 boolean doSomething()
           
static LemsConstants.LemsOption valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LemsConstants.LemsOption[] 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

NONE

public static final LemsConstants.LemsOption NONE

EXECUTE_MODEL

public static final LemsConstants.LemsOption EXECUTE_MODEL

GENERATE_GRAPH

public static final LemsConstants.LemsOption GENERATE_GRAPH

GENERATE_NINEML

public static final LemsConstants.LemsOption GENERATE_NINEML

GENERATE_NEURON

public static final LemsConstants.LemsOption GENERATE_NEURON
Method Detail

values

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

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

valueOf

public static LemsConstants.LemsOption 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

doSomething

public boolean doSomething()