public enum EnumCM_CTAcquisitionType extends java.lang.Enum<EnumCM_CTAcquisitionType>
| Enum Constant and Description |
|---|
CONSTANT_ANGLE_ACQUISITION |
FREE_ACQUISITION |
SEQUENCED_ACQUISITION |
SPIRAL_ACQUISITION |
STATIONARY_ACQUISITION |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CTAcquisitionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CTAcquisitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CTAcquisitionType SEQUENCED_ACQUISITION
public static final EnumCM_CTAcquisitionType SPIRAL_ACQUISITION
public static final EnumCM_CTAcquisitionType CONSTANT_ANGLE_ACQUISITION
public static final EnumCM_CTAcquisitionType STATIONARY_ACQUISITION
public static final EnumCM_CTAcquisitionType FREE_ACQUISITION
public static EnumCM_CTAcquisitionType[] values()
for (EnumCM_CTAcquisitionType c : EnumCM_CTAcquisitionType.values()) System.out.println(c);
public static EnumCM_CTAcquisitionType 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()