org.dcm4che.srom
Interface Patient


public interface Patient

The Patient interface represents some of the fields of the DICOM Patient Module.

Version:
1.0
Author:
gunter.zeilinger@tiani.com
See Also:
"DICOM Part 3: Information Object Definitions, Annex C.7.1.1 Patient Module"

Nested Class Summary
static class Patient.Sex
          Inner static class that represents a enumeration of the patient sex.
 
Method Summary
 java.util.Date getPatientBirthDate()
          Returns the DICOM Patient's Birth Date.
 java.lang.String getPatientID()
          Returns the DICOM Patient ID.
 java.lang.String getPatientName()
          Returns the DICOM Patient Name.
 Patient.Sex getPatientSex()
          Returns the DICOM Patient's Sex.
 void toDataset(Dataset ds)
           
 

Method Detail

getPatientID

java.lang.String getPatientID()
Returns the DICOM Patient ID.
DICOM Tag: (0010,0020)

Returns:
the Patient ID.

getPatientName

java.lang.String getPatientName()
Returns the DICOM Patient Name.
DICOM Tag: (0010,0010)

Returns:
the Patient Name.

getPatientSex

Patient.Sex getPatientSex()
Returns the DICOM Patient's Sex.
DICOM Tag: (0010,0040)

Returns:
the Patient's Sex.

getPatientBirthDate

java.util.Date getPatientBirthDate()
Returns the DICOM Patient's Birth Date.
DICOM Tag: (0010,0030)

Returns:
the Patient's Birth Date.

toDataset

void toDataset(Dataset ds)