|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<PatientPosition>
com.xinapse.dicom.PatientPosition
public enum PatientPosition
An enumeration of the possible positions in which a patient may be lying in the scanning equipment (e.g, head-first, supine).
| Enum Constant Summary | |
|---|---|
FFDL
PatientPosition indicating feet-first, decubitus left. |
|
FFDR
PatientPosition indicating feet-first, decubitus right. |
|
FFP
PatientPosition indicating feet-first, prone. |
|
FFS
PatientPosition indicating feet-first, supine. |
|
HFDL
PatientPosition indicating head-first, decubitus left. |
|
HFDR
PatientPosition indicating head-first, decubitus right. |
|
HFP
PatientPosition indicating head-first, prone. |
|
HFS
PatientPosition indicating head-first, supine. |
|
UNKNOWN
PatientPosition indicating that the patient position is unknown. |
|
| Method Summary | |
|---|---|
static PatientPosition |
getInstance(java.lang.String pp)
Returns a PatientPosition Object corresponding to the supplied string. |
static PatientPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PatientPosition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final PatientPosition UNKNOWN
public static final PatientPosition HFP
public static final PatientPosition HFS
public static final PatientPosition HFDR
public static final PatientPosition HFDL
public static final PatientPosition FFP
public static final PatientPosition FFS
public static final PatientPosition FFDR
public static final PatientPosition FFDL
| Method Detail |
|---|
public static PatientPosition[] values()
for (PatientPosition c : PatientPosition.values()) System.out.println(c);
public static PatientPosition 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 name
java.lang.NullPointerException - if the argument is nullpublic static PatientPosition getInstance(java.lang.String pp)
pp - a String which is one of "HFS", "HFP", "HFDR", "HFDL", "FFS", "FFP", "FFDR"
or "FFDL". The case of pp is ignored. If pp does not match any of these,
then PatientPosition.UNKNOWN is returned.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||