net.ctdp.rfdynhud.gamedata
Enum VehiclePhysics.WheelDrive

java.lang.Object
  extended by java.lang.Enum<VehiclePhysics.WheelDrive>
      extended by net.ctdp.rfdynhud.gamedata.VehiclePhysics.WheelDrive
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VehiclePhysics.WheelDrive>
Enclosing class:
VehiclePhysics

public static enum VehiclePhysics.WheelDrive
extends java.lang.Enum<VehiclePhysics.WheelDrive>

Abstraction of possible Wheel drive settings.

Author:
Marvin Froehlich (CTDP)

Enum Constant Summary
FOUR
           
FRONT
           
REAR
           
 
Method Summary
 boolean includesFront()
           
 boolean includesRear()
           
static VehiclePhysics.WheelDrive valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VehiclePhysics.WheelDrive[] 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

FRONT

public static final VehiclePhysics.WheelDrive FRONT

REAR

public static final VehiclePhysics.WheelDrive REAR

FOUR

public static final VehiclePhysics.WheelDrive FOUR
Method Detail

values

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

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

valueOf

public static VehiclePhysics.WheelDrive 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

includesFront

public final boolean includesFront()

includesRear

public final boolean includesRear()