org.dcm4che.srom
Interface Study


public interface Study

The Study interface represents some of the fields of the DICOM General Study Module.

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

Method Summary
 java.lang.String getAccessionNumber()
          Returns the DICOM Accession Number.
 Code[] getProcedureCodes()
          Returns the entries of the DICOM Procedure Code Sequence.
 java.lang.String getReferringPhysicianName()
          Returns the DICOM Referring Physician's Name.
 java.util.Date getStudyDateTime()
          Returns the study date and time.
 java.lang.String getStudyDescription()
          Returns the DICOM Study Description.
 java.lang.String getStudyID()
          Returns the DICOM Study ID.
 java.lang.String getStudyInstanceUID()
          Returns the study instance UID.
 void toDataset(Dataset ds)
           
 

Method Detail

getStudyInstanceUID

java.lang.String getStudyInstanceUID()
Returns the study instance UID.
DICOM Tag: (0020,000D)

Returns:
the study instance UID.

getStudyID

java.lang.String getStudyID()
Returns the DICOM Study ID.
DICOM Tag: (0020,0010)

Returns:
the study ID.

getStudyDateTime

java.util.Date getStudyDateTime()
Returns the study date and time.
DICOM Tags:

Returns:
the study date and time.

getReferringPhysicianName

java.lang.String getReferringPhysicianName()
Returns the DICOM Referring Physician's Name.
DICOM Tag: (0008,0090)

Returns:
Referring Physician's Name.

getAccessionNumber

java.lang.String getAccessionNumber()
Returns the DICOM Accession Number.
DICOM Tag: (0008,0050)

Returns:
Accession Number.

getStudyDescription

java.lang.String getStudyDescription()
Returns the DICOM Study Description.
DICOM Tag: (0008,1030)

Returns:
Study Description.

getProcedureCodes

Code[] getProcedureCodes()
Returns the entries of the DICOM Procedure Code Sequence.
DICOM Tag: (0008,1032)

Returns:
Procedure Code Sequence.
See Also:
Code

toDataset

void toDataset(Dataset ds)