com.azalient.api.b.parameters
Enum IMotorCalibration.FollowingModel

java.lang.Object
  extended by java.lang.Enum<IMotorCalibration.FollowingModel>
      extended by com.azalient.api.b.parameters.IMotorCalibration.FollowingModel
All Implemented Interfaces:
Serializable, Comparable<IMotorCalibration.FollowingModel>
Enclosing interface:
IMotorCalibration

public static enum IMotorCalibration.FollowingModel
extends Enum<IMotorCalibration.FollowingModel>

An enumeration of car-following models.


Enum Constant Summary
Fritzsche
           
Gipps
           
UserDefined
           
Wiedemann
           
 
Method Summary
 boolean checked()
           
 void checked(boolean b)
           
static IMotorCalibration.FollowingModel parse(String s)
           
static IMotorCalibration.FollowingModel valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IMotorCalibration.FollowingModel[] 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

Gipps

public static final IMotorCalibration.FollowingModel Gipps

Wiedemann

public static final IMotorCalibration.FollowingModel Wiedemann

Fritzsche

public static final IMotorCalibration.FollowingModel Fritzsche

UserDefined

public static final IMotorCalibration.FollowingModel UserDefined
Method Detail

values

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

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

valueOf

public static IMotorCalibration.FollowingModel 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

parse

public static IMotorCalibration.FollowingModel parse(String s)

checked

public boolean checked()

checked

public void checked(boolean b)