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