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