public enum EnumWholeBodyTechnique extends java.lang.Enum<EnumWholeBodyTechnique>
| Enum Constant and Description |
|---|
MULTIPLE_STATIC_FRAMES_COLLECTED_INTO_WHOLE_BODY_FRAME
The multiple_static_frames_collected_into_whole_body_frame.
|
ONE_PASS
The one_ pass.
|
PATIENT_CONTOUR_FOLLOWING_EMPLOYED
The patient_ contour_ following_ employed.
|
TWO_PASS
The two_ pass.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumWholeBodyTechnique |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumWholeBodyTechnique[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumWholeBodyTechnique ONE_PASS
public static final EnumWholeBodyTechnique TWO_PASS
public static final EnumWholeBodyTechnique PATIENT_CONTOUR_FOLLOWING_EMPLOYED
public static final EnumWholeBodyTechnique MULTIPLE_STATIC_FRAMES_COLLECTED_INTO_WHOLE_BODY_FRAME
public static EnumWholeBodyTechnique[] values()
for (EnumWholeBodyTechnique c : EnumWholeBodyTechnique.values()) System.out.println(c);
public static EnumWholeBodyTechnique 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()