edu.stanford.rsl.konrad.geometry
Enum Projection.CameraAxisDirection

java.lang.Object
  extended by java.lang.Enum<Projection.CameraAxisDirection>
      extended by edu.stanford.rsl.konrad.geometry.Projection.CameraAxisDirection
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Projection.CameraAxisDirection>
Enclosing class:
Projection

public static enum Projection.CameraAxisDirection
extends java.lang.Enum<Projection.CameraAxisDirection>


Enum Constant Summary
DETECTORMOTION_MINUS
          Indicates that an image axis is oriented opposited to the detector's direction of motion
DETECTORMOTION_PLUS
          Indicates that an image axis is oriented along the detector's direction of motion
ROTATIONAXIS_MINUS
          Indicates that an image axis is oriented opposite to the rotation direction of the camera
ROTATIONAXIS_PLUS
          Indicates that an image axis is oriented along the rotation direction of the camera
 
Method Summary
static Projection.CameraAxisDirection valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Projection.CameraAxisDirection[] 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

DETECTORMOTION_PLUS

public static final Projection.CameraAxisDirection DETECTORMOTION_PLUS
Indicates that an image axis is oriented along the detector's direction of motion


DETECTORMOTION_MINUS

public static final Projection.CameraAxisDirection DETECTORMOTION_MINUS
Indicates that an image axis is oriented opposited to the detector's direction of motion


ROTATIONAXIS_PLUS

public static final Projection.CameraAxisDirection ROTATIONAXIS_PLUS
Indicates that an image axis is oriented along the rotation direction of the camera


ROTATIONAXIS_MINUS

public static final Projection.CameraAxisDirection ROTATIONAXIS_MINUS
Indicates that an image axis is oriented opposite to the rotation direction of the camera

Method Detail

values

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

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

valueOf

public static Projection.CameraAxisDirection 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