public enum EnumTypeOfDetectorMotion extends java.lang.Enum<EnumTypeOfDetectorMotion>
| Enum Constant and Description |
|---|
CLAMSHELL_MOTION
The CLAMSHELL_ MOTION.
|
GANTRY_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS
The GANTRY_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS.
|
INTERRUPTED_MOTION_ACQUIRE_WHILE_STATIONARY
The INTERRUPTED_MOTION_ACQUIRE_WHILE_STATIONARY.
|
INTERRUPTED_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS
The INTERRUPTED_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS.
|
STATIONARY_GANTRY
The STATIONAR Y_ GANTRY.
|
WOBBLE_MOTION
The WOBBLE_ MOTION.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumTypeOfDetectorMotion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTypeOfDetectorMotion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTypeOfDetectorMotion INTERRUPTED_MOTION_ACQUIRE_WHILE_STATIONARY
public static final EnumTypeOfDetectorMotion GANTRY_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS
public static final EnumTypeOfDetectorMotion INTERRUPTED_MOTION_ACQUISION_SIMULTANEOUS_CONTINUOUS
public static final EnumTypeOfDetectorMotion WOBBLE_MOTION
public static final EnumTypeOfDetectorMotion CLAMSHELL_MOTION
public static final EnumTypeOfDetectorMotion STATIONARY_GANTRY
public static EnumTypeOfDetectorMotion[] values()
for (EnumTypeOfDetectorMotion c : EnumTypeOfDetectorMotion.values()) System.out.println(c);
public static EnumTypeOfDetectorMotion 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 nullpublic java.lang.String getValue()