public enum EnumScanOptions extends java.lang.Enum<EnumScanOptions>
| Enum Constant and Description |
|---|
BOLUS_CHASING
The BOLU s_ chasing.
|
CARDIAC_GATING
The CARDIAC_GATING.
|
EKG_EVENT_TRIGGER
The EKG_EVENT_TRIGGER.
|
FAT_SATURATION
The FAT_SATURATION.
|
FLOW_COMPENSATION
The FLOW_COMPENSATION.
|
PARTIAL_FOURIER_FREQUENCY
The PARTIAL_FOURIER_FREQUENCY.
|
PARTIAL_FOURIER_PHASE
The PARTIAL_FOURIER_PHASE.
|
PERIPHERAL_PULSE_GATING
The PERIPHERAL_PULSE_GATING.
|
PHASE_ENCODE_REORDERING
The PHASE_ENCODE_REORDERING.
|
PHYSIOLOGICAL_EVENT_TRIGGER
The PHYSIOLOGICAL_EVENT_TRIGGER.
|
RESPIRATORY_GATING
The RESPIRATORY_GATING.
|
ROTATION
The ROTATION.
|
SPATIAL_PRESATURATION
The SPATIAL_PRESATURATION.
|
STEPPING
The STEPPING.
|
TOMOGRAPHY
The TOMOGRAPHY.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumScanOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumScanOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumScanOptions PHASE_ENCODE_REORDERING
public static final EnumScanOptions RESPIRATORY_GATING
public static final EnumScanOptions CARDIAC_GATING
public static final EnumScanOptions PERIPHERAL_PULSE_GATING
public static final EnumScanOptions FLOW_COMPENSATION
public static final EnumScanOptions PARTIAL_FOURIER_FREQUENCY
public static final EnumScanOptions PARTIAL_FOURIER_PHASE
public static final EnumScanOptions SPATIAL_PRESATURATION
public static final EnumScanOptions FAT_SATURATION
public static final EnumScanOptions EKG_EVENT_TRIGGER
public static final EnumScanOptions PHYSIOLOGICAL_EVENT_TRIGGER
public static final EnumScanOptions TOMOGRAPHY
public static final EnumScanOptions BOLUS_CHASING
public static final EnumScanOptions STEPPING
public static final EnumScanOptions ROTATION
public static EnumScanOptions[] values()
for (EnumScanOptions c : EnumScanOptions.values()) System.out.println(c);
public static EnumScanOptions 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()