edu.ucla.belief.approx
Enum RecoverySetting

Object
  extended by Enum<RecoverySetting>
      extended by RecoverySetting
All Implemented Interfaces:
Setting, Serializable, Comparable<RecoverySetting>

public enum RecoverySetting
extends Enum<RecoverySetting>
implements Setting

Since:
20091207
Author:
keith cascio

Nested Class Summary
 
Nested classes/interfaces inherited from interface Setting
Setting.Settings<E extends Enum<E> & Setting>
 
Enum Constant Summary
compare2exact
           
heuristic
           
iterations
           
recovery
           
seed
           
subalgorithm
           
threshold
           
timeout
           
 
Field Summary
 Map<PropertyKey,Object> properties
           
 
Method Summary
 Object get(PropertyKey key)
           
 Map<PropertyKey,Object> properties()
           
static RecoverySetting valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RecoverySetting[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

iterations

public static final RecoverySetting iterations

timeout

public static final RecoverySetting timeout

threshold

public static final RecoverySetting threshold

heuristic

public static final RecoverySetting heuristic

recovery

public static final RecoverySetting recovery

seed

public static final RecoverySetting seed

compare2exact

public static final RecoverySetting compare2exact

subalgorithm

public static final RecoverySetting subalgorithm
Field Detail

properties

public final Map<PropertyKey,Object> properties
Method Detail

values

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

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

valueOf

public static RecoverySetting 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

get

public Object get(PropertyKey key)
Specified by:
get in interface Setting

properties

public Map<PropertyKey,Object> properties()
Specified by:
properties in interface Setting


Copyright 2010 UCLA Automated Reasoning Group