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