Uses of Class
jdcm.DicomSet

Uses of DicomSet in jdcm
 

Fields in jdcm declared as DicomSet
protected  DicomSet DicomFile.dicomSet
           
 

Methods in jdcm that return DicomSet
 DicomSet DimseService.getDicomSet()
          Retrieves the data set instance associated with this DIMSE message.
 DicomSet DicomFile.getDicomSet()
          Retrieves the data set contained in this Dicom file object.
 DicomSet DicomSequence.getDicomSet(int index)
          Retrieve an Data Set in this sequence.
 DicomSet N_Set.readRPS()
          Receive a DIMSE N-SET-RSP message from the association partner.
 DicomSet N_Get.readRPS()
          Receive a DIMSE N-GET-RSP message from the association partner.
 DicomSet N_Event_Report.readRPS()
          Receive a DIMSE N-EVENT-REPORT-RSP message from the association partner.
 DicomSet N_Delete.readRPS()
          Receive a DIMSE C-DELETE-RSP message from the association partner.
 DicomSet N_Create.readRPS()
          Receive a DIMSE C-CREATE-RSP message from the association partner.
 DicomSet N_Action.readRPS()
          Receive a DIMSE N-ACTION-RSP message from the association partner.
 DicomSet C_Store.readRPS()
          Receive a DIMSE C-STORE-RSP message from the association partner.
 DicomSet C_Move.readRPS()
          Receive a DIMSE C-MOVE-RSP message from the association partner.
 DicomSet C_Get.readRPS()
          Receive a DIMSE C-GET-RSP message from the association partner.
 DicomSet C_Find.readRPS()
          Receive a DIMSE C-FIND-RSP message from the association partner.
 DicomSet C_Echo.readRPS()
          Receive a DIMSE C-ECHO-RSP message from the association partner.
 DicomSet N_Set.readRQ()
          Receive a DIMSE N-SET-RQ message from the association partner.
 DicomSet N_Get.readRQ()
          Receive a DIMSE N-GET-RQ message from the association partner.
 DicomSet N_Event_Report.readRQ()
          Receive a DIMSE N-EVENT-REPORT-RQ message from the association partner.
 DicomSet N_Delete.readRQ()
          Receive a DIMSE C-DELETE-RQ message from the association partner.
 DicomSet N_Create.readRQ()
          Receive a DIMSE C-CREATE-RQ message from the association partner.
 DicomSet N_Action.readRQ()
          Receive a DIMSE N-ACTION-RQ message from the association partner.
 DicomSet C_Store.readRQ()
          Receive a DIMSE C-STORE-RQ message from the association partner.
 DicomSet C_Move.readRQ()
          Receive a DIMSE C-MOVE-RQ message from the association partner.
 DicomSet C_Get.readRQ()
          Receive a DIMSE C-GET-RQ message from the association partner.
 DicomSet C_Find.readRQ()
          Receive a DIMSE C-FIND-RQ message from the association partner.
 DicomSet C_Echo.readRQ()
          Receive a DIMSE C-ECHO-RQ message from the association partner.
 

Methods in jdcm with parameters of type DicomSet
 void DicomSequence.addDicomSet(DicomSet dicomSet)
          Add data set to the DicomSequence
 void N_Set.writeRPS(DicomSet dicomSet)
          Send a DIMSE N-SET-RSP message to the association partner.
 void N_Get.writeRPS(DicomSet dicomSet)
          Send a DIMSE N-GET-RSP message to the association partner.
 void N_Event_Report.writeRPS(DicomSet dicomSet)
          Send a DIMSE N-EVENT-REPORT-RSP message to the association partner.
 void N_Delete.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-DELETE-RSP message to the association partner.
 void N_Create.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-CREATE-RSP message to the association partner.
 void N_Action.writeRPS(DicomSet dicomSet)
          Send a DIMSE N-ACTION-RSP message to the association partner.
 void C_Store.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-STORE-RSP message to the association partner.
 void C_Move.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-MOVE-RSP message to the association partner.
 void C_Get.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-GET-RSP message to the association partner.
 void C_Find.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-FIND-RSP message to the association partner.
 void C_Echo.writeRPS(DicomSet dicomSet)
          Send a DIMSE C-ECHO-RSP message to the association partner.
 void N_Set.writeRQ(DicomSet dicomSet)
          Send a DIMSE N-SET-RQ message to the association partner.
 void N_Get.writeRQ(DicomSet dicomSet)
          Send a DIMSE N-GET-RQ message to the association partner.
 void N_Event_Report.writeRQ(DicomSet dicomSet)
          Send a DIMSE N-EVENT-REPORT-RQ message to the association partner.
 void N_Delete.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-DELETE-RQ message to the association partner.
 void N_Create.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-CREATE-RQ message to the association partner.
 void N_Action.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-ACTION-RQ message to the association partner.
 void C_Store.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-STORE-RQ message to the association partner.
 void C_Move.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-MOVE-RQ message to the association partner.
 void C_Get.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-GET-RQ message to the association partner.
 void C_Find.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-FIND-RQ message to the association partner.
 void C_Echo.writeRQ(DicomSet dicomSet)
          Send a DIMSE C-ECHO-RQ message to the association partner.
 

Constructors in jdcm with parameters of type DicomSet
DicomFile(DicomSet dicomSet)
          Constructs an DicomFile object, using the provided dicomSet for the data set.
DicomSequence(DicomSet dicomSet, boolean undefLength)
          Constructs an sequence with an single Data Set Item.
 

Constructor parameters in jdcm with type arguments of type DicomSet
DicomSequence(java.util.ArrayList<DicomSet> dicomSets, boolean undefLength)
          Constructs an sequence with an ArrayList of Data Set Items.