clarion.tools
Enum Personality.BehavioralSystemMembers

java.lang.Object
  extended by java.lang.Enum<Personality.BehavioralSystemMembers>
      extended by clarion.tools.Personality.BehavioralSystemMembers
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Personality.BehavioralSystemMembers>
Enclosing class:
Personality

public static enum Personality.BehavioralSystemMembers
extends java.lang.Enum<Personality.BehavioralSystemMembers>

For the PrimaryDrives enumerator, this specifies to which behavioral system they belong. Using this enum you can find out which of the PrimaryDrives belong to:

The members of the systems are stored in the PrimaryDrives HashMap accessed by typing, for example:

Personality.BehavioralSystemMembers.BAS_ONLY.PrimaryDrives

The keys for the PrimaryDrives HashMap is the ordinal value of the primary drive in the PrimaryDrives enumerator located in the Personality class.


Enum Constant Summary
BAS_ONLY
           
BIS_ONLY
           
BOTH_SYSTEMS
           
 
Field Summary
 java.util.HashMap<java.lang.Integer,Personality.PrimaryDrives> PrimaryDrives
          The collection of primary drives contained within the behavioral system.
 
Method Summary
static Personality.BehavioralSystemMembers valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Personality.BehavioralSystemMembers[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BAS_ONLY

public static final Personality.BehavioralSystemMembers BAS_ONLY

BIS_ONLY

public static final Personality.BehavioralSystemMembers BIS_ONLY

BOTH_SYSTEMS

public static final Personality.BehavioralSystemMembers BOTH_SYSTEMS
Field Detail

PrimaryDrives

public final java.util.HashMap<java.lang.Integer,Personality.PrimaryDrives> PrimaryDrives
The collection of primary drives contained within the behavioral system. The key is the ordinal value of the primary drive in the PrimaryDrives enumerator located in the Personality class

Method Detail

values

public static final Personality.BehavioralSystemMembers[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Personality.BehavioralSystemMembers c : Personality.BehavioralSystemMembers.values())
        System.out.println(c);

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

valueOf

public static Personality.BehavioralSystemMembers 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