public static enum Projection.CameraAxisDirection extends java.lang.Enum<Projection.CameraAxisDirection>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Projection.CameraAxisDirection DETECTORMOTION_PLUS
public static final Projection.CameraAxisDirection DETECTORMOTION_MINUS
public static final Projection.CameraAxisDirection ROTATIONAXIS_PLUS
public static final Projection.CameraAxisDirection ROTATIONAXIS_MINUS
public static Projection.CameraAxisDirection[] values()
for (Projection.CameraAxisDirection c : Projection.CameraAxisDirection.values()) System.out.println(c);
public static Projection.CameraAxisDirection valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null