Microsoft.Xna.Framework.GamerServices
Enum RacingCameraAngle

java.lang.Object
  extended by java.lang.Enum<RacingCameraAngle>
      extended by Microsoft.Xna.Framework.GamerServices.RacingCameraAngle
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RacingCameraAngle>

public enum RacingCameraAngle
extends java.lang.Enum<RacingCameraAngle>

Indicates which camera angle this gamer prefers to use in racing games.

Author:
Halofreak1990

Enum Constant Summary
Back
          Traditional third-person camera view from behind the car.
Front
          Camera view from in front of the car.
Inside
          Camera view from inside the car, looking through the windscreen.
 
Method Summary
static RacingCameraAngle valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RacingCameraAngle[] 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

Back

public static final RacingCameraAngle Back
Traditional third-person camera view from behind the car.


Front

public static final RacingCameraAngle Front
Camera view from in front of the car. The car itself is not visible.


Inside

public static final RacingCameraAngle Inside
Camera view from inside the car, looking through the windscreen.

Method Detail

values

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

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

valueOf

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