org.dcm4che.srom
Interface NumContent

All Superinterfaces:
Content

public interface NumContent
extends Content

The NumContent interface represents a DICOM SR Numeric Content of value type NUM.
Numeric value fully qualified by coded representation of the measurement name and unit of measurement.

Version:
1.0
Author:
gunter.zeilinger@tiani.com
See Also:
"DICOM Part 3: Information Object Definitions, Annex C.17.3 SR Document Content Module", "DICOM Part 3: Information Object Definitions, Annex C.18.1 Numeric Measurement Macro"

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.dcm4che.srom.Content
Content.RelationType, Content.ValueType
 
Field Summary
 
Fields inherited from interface org.dcm4che.srom.Content
log
 
Method Summary
 Code getQualifier()
           
 Code getUnit()
          Returns the measurement unit.
 java.lang.Float getValue()
          Returns the numeric value.
 void setQualifier(Code code)
           
 void setUnit(Code code)
           
 void setValue(java.lang.Float value)
           
 
Methods inherited from interface org.dcm4che.srom.Content
appendChild, clone, getFirstChild, getFirstChildBy, getID, getLastChild, getName, getNextSibling, getNextSiblingBy, getObservationDateTime, getOwnerDocument, getParent, getPreviousSibling, getRelationType, getTemplate, getValueType, hasChildren, insertBefore, removeChild, replaceChild, setName, toDataset
 

Method Detail

getValue

java.lang.Float getValue()
Returns the numeric value.
DICOM Tag: (0040,A30A)
Tag Name: Numeric Value
Numeric measurement value.

Returns:
the the numeric value.

getUnit

Code getUnit()
Returns the measurement unit.
DICOM Tag: (0040,08EA)
Tag Name: Measurement Units Code Sequence
The single item of Measurement Units Code Sequence

Returns:
the measurement unit.

getQualifier

Code getQualifier()

setValue

void setValue(java.lang.Float value)

setUnit

void setUnit(Code code)

setQualifier

void setQualifier(Code code)