de.cesr.lara.components.preprocessor
Enum LaraBOPreselector.LAccuracy

java.lang.Object
  extended by java.lang.Enum<LaraBOPreselector.LAccuracy>
      extended by de.cesr.lara.components.preprocessor.LaraBOPreselector.LAccuracy
All Implemented Interfaces:
LaraBOPreselector.Accuracy, Serializable, Comparable<LaraBOPreselector.LAccuracy>
Enclosing interface:
LaraBOPreselector<A extends LaraAgent<? super A,?>,BO extends LaraBehaviouralOption<?,?>>

public static enum LaraBOPreselector.LAccuracy
extends Enum<LaraBOPreselector.LAccuracy>
implements LaraBOPreselector.Accuracy

accuracy


Enum Constant Summary
ACCURATE
          Most accurate preprocessor handling
ASK_AGENT
          Using ASK_AGENT will cause the preprocessor to step back to the agent (this requires the user to implement LaraBOPreselectingAgent ).
MODERATE
          Moderate preprocessor handling
TOLERANT
          Tolerant preprocessor handling
 
Method Summary
static LaraBOPreselector.LAccuracy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LaraBOPreselector.LAccuracy[] 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

ASK_AGENT

public static final LaraBOPreselector.LAccuracy ASK_AGENT
Using ASK_AGENT will cause the preprocessor to step back to the agent (this requires the user to implement LaraBOPreselectingAgent ).


ACCURATE

public static final LaraBOPreselector.LAccuracy ACCURATE
Most accurate preprocessor handling


MODERATE

public static final LaraBOPreselector.LAccuracy MODERATE
Moderate preprocessor handling


TOLERANT

public static final LaraBOPreselector.LAccuracy TOLERANT
Tolerant preprocessor handling

Method Detail

values

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

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

valueOf

public static LaraBOPreselector.LAccuracy 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