edu.bonn.xulu.plugin.model.parallel
Enum ClueTaskDefinition.Task

java.lang.Object
  extended by java.lang.Enum<ClueTaskDefinition.Task>
      extended by edu.bonn.xulu.plugin.model.parallel.ClueTaskDefinition.Task
All Implemented Interfaces:
Serializable, Comparable<ClueTaskDefinition.Task>
Enclosing class:
ClueTaskDefinition

public static enum ClueTaskDefinition.Task
extends Enum<ClueTaskDefinition.Task>


Enum Constant Summary
CLUE_ITER
          Task: Calculate a iteration
LU_PROB
          Task: Calculate the LU-probabilities
NEIGHBORHOOD_PROB
          Task: Calculate the neighborhood-probabilties
STEP_FINALIZATION
          Task: Finalize the step (prepare for next step execution)
 
Method Summary
static ClueTaskDefinition.Task valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClueTaskDefinition.Task[] 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

LU_PROB

public static final ClueTaskDefinition.Task LU_PROB
Task: Calculate the LU-probabilities


NEIGHBORHOOD_PROB

public static final ClueTaskDefinition.Task NEIGHBORHOOD_PROB
Task: Calculate the neighborhood-probabilties


CLUE_ITER

public static final ClueTaskDefinition.Task CLUE_ITER
Task: Calculate a iteration


STEP_FINALIZATION

public static final ClueTaskDefinition.Task STEP_FINALIZATION
Task: Finalize the step (prepare for next step execution)

Method Detail

values

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

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

valueOf

public static ClueTaskDefinition.Task 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