jildt.agent
Enum LearningSettings.SettingsAtt

java.lang.Object
  extended by java.lang.Enum<LearningSettings.SettingsAtt>
      extended by jildt.agent.LearningSettings.SettingsAtt
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LearningSettings.SettingsAtt>
Enclosing class:
LearningSettings

public static enum LearningSettings.SettingsAtt
extends java.lang.Enum<LearningSettings.SettingsAtt>

Enumerates the possible settings for learning. The settings are defined after jildt_settings/2 literals in the agent code. Possible settings are:


Enum Constant Summary
biasMode
           
displayMode
           
excludeBels
           
inductionLevel
           
learningPlansSrc
           
randomSeed
           
trace
           
 
Method Summary
static LearningSettings.SettingsAtt valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LearningSettings.SettingsAtt[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

trace

public static final LearningSettings.SettingsAtt trace

biasMode

public static final LearningSettings.SettingsAtt biasMode

learningPlansSrc

public static final LearningSettings.SettingsAtt learningPlansSrc

excludeBels

public static final LearningSettings.SettingsAtt excludeBels

inductionLevel

public static final LearningSettings.SettingsAtt inductionLevel

displayMode

public static final LearningSettings.SettingsAtt displayMode

randomSeed

public static final LearningSettings.SettingsAtt randomSeed
Method Detail

values

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

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

valueOf

public static LearningSettings.SettingsAtt valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null