Class and Description |
---|
oracle.ord.dicom.client.DicomLocatorService
The DicomLocatorService class extends the DicomService class to provide services to extract DICOM metadata using DICOM value locators. DICOM value locators are defined by Oracle Multimedia. See Oracle Multimedia DICOM Developer's Guide for more information about DICOM value locators. A DicomLocatorService object is created by specifying a list of DICOM value locators. |
oracle.ord.dicom.client.DicomService
The DicomService class represents the base Java class for the DICOM middle tier.
|
oracle.ord.dicom.client.DicomTagService
The DicomTagService class extends the DicomService class to provide services to extract DICOM metadata using DICOM attribute tags. DICOM attribute tags are defined by the DICOM standard. A DicomTagService object is created by specifying a list of DICOM attribute tags. |
Exceptions and Description |
---|
oracle.ord.dicom.client.DicomServiceException
The DicomServiceException class extends the class |
Field and Description |
---|
oracle.ord.dicom.client.DicomService.IGNORE_ERROR
A special Map for use in methods of the DicomService class and its subclasses to indicate that errors and exceptions are to be ignored.
|
oracle.ord.dicom.client.DicomService.THROW_EXCEPTION
A special Map for use in methods of the DicomService class and its subclasses to indicate that errors and exceptions are to be thrown.
|
Method and Description |
---|
oracle.ord.dicom.client.DicomTagService.getAttrs(File, Map<String, Throwable>)
Extracts the values of the DICOM attribute for each attribute tag from the input DICOM file.
|
oracle.ord.dicom.client.DicomTagService.getAttrs(InputStream, Map<String, Throwable>)
Extracts the values of the DICOM attribute for each attribute tag from the DICOM InputStream object.
|
oracle.ord.dicom.client.DicomTagService.getAttrTags()
Returns the DICOM attribute tags used to construct this DicomTagService object.
|
oracle.ord.dicom.client.DicomServiceException.getErrorLocator()
Gets the first invalid DICOM value locator or attribute tag in the input. Invalid value locators or attribute tags include malformed tags or nonscalar tags.
|
oracle.ord.dicom.client.DicomLocatorService.getFirstAttrs(File, Map<String, Throwable>)
Extracts the value of the first attribute for each DICOM value locator from the input DICOM file.
|
oracle.ord.dicom.client.DicomLocatorService.getFirstAttrs(InputStream, Map<String, Throwable>)
Extracts the value of the first attribute for each DICOM value locator from the DICOM InputStream object.
|
oracle.ord.dicom.client.DicomLocatorService.getLocators()
Returns the DICOM value locators used to construct this DicomLocatorService object.
|
Constructor and Description |
---|
oracle.ord.dicom.client.DicomLocatorService(String[])
Constructs a DicomLocatorService object with the specified DICOM value locators.
|
oracle.ord.dicom.client.DicomTagService(String[])
Constructs a DicomTagService Object with the specified DICOM attribute tags.
|