Class DicomDictionary
- Direct Known Subclasses:
DicomDictionaryForMinimalPatientStudySeriesInstanceModel
,DicomDictionaryForPatientStudySeriesConcatenationInstanceModel
,DicomDictionaryForStudySeriesInstanceModel
The DicomDictionary
class
is a complete standard dictionary of DICOM attributes and associated information.
The accessor methods that an application would normally use are defined in the
DicomDictionaryBase
class.
-
Field Summary
FieldsFields inherited from class com.pixelmed.dicom.DicomDictionaryBase
fullNameByTag, informationEntityByTag, nameByTag, tagByName, tagList, valueRepresentationsByTag
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
Concrete sub-classes implement this method to create a map of attribute full names from tags for each tag in the dictionary.protected void
Concrete sub-classes implement this method to create a map of information entities for each tag in the dictionary.protected void
Concrete sub-classes implement this method to create a map of attribute names from tags for each tag in the dictionary.protected void
Concrete sub-classes implement this method to create a map of tags from attribute names for each tag in the dictionary.protected void
Concrete sub-classes implement this method to create a list of all tags in the dictionary.protected void
Concrete sub-classes implement this method to create a map of value representations for each tag in the dictionary.Methods inherited from class com.pixelmed.dicom.DicomDictionaryBase
getFullNameFromTag, getInformationEntityFromTag, getNameFromTag, getTagFromName, getTagIterator, getValueRepresentationFromTag, main
-
Field Details
-
xmlDicomDictionaryResourceName
-
xmlDicomDictionaryIEResourceName
-
StandardDictionary
-
-
Constructor Details
-
DicomDictionary
public DicomDictionary()
-
-
Method Details
-
createTagList
protected void createTagList()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a list of all tags in the dictionary.
- Specified by:
createTagList
in classDicomDictionaryBase
-
createValueRepresentationsByTag
protected void createValueRepresentationsByTag()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a map of value representations for each tag in the dictionary.
- Specified by:
createValueRepresentationsByTag
in classDicomDictionaryBase
-
createInformationEntityByTag
protected void createInformationEntityByTag()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a map of information entities for each tag in the dictionary.
- Specified by:
createInformationEntityByTag
in classDicomDictionaryBase
-
createTagByName
protected void createTagByName()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a map of tags from attribute names for each tag in the dictionary.
- Specified by:
createTagByName
in classDicomDictionaryBase
-
createNameByTag
protected void createNameByTag()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a map of attribute names from tags for each tag in the dictionary.
- Specified by:
createNameByTag
in classDicomDictionaryBase
-
createFullNameByTag
protected void createFullNameByTag()Description copied from class:DicomDictionaryBase
Concrete sub-classes implement this method to create a map of attribute full names from tags for each tag in the dictionary.
- Specified by:
createFullNameByTag
in classDicomDictionaryBase
-