Class DicomDictionary
- java.lang.Object
-
- com.pixelmed.dicom.DicomDictionaryBase
-
- com.pixelmed.dicom.DicomDictionary
-
- Direct Known Subclasses:
DicomDictionaryForMinimalPatientStudySeriesInstanceModel,DicomDictionaryForPatientStudySeriesConcatenationInstanceModel,DicomDictionaryForStudySeriesInstanceModel
public class DicomDictionary extends DicomDictionaryBase
The
DicomDictionaryclass is a complete standard dictionary of DICOM attributes and associated information.The accessor methods that an application would normally use are defined in the
DicomDictionaryBaseclass.
-
-
Field Summary
-
Fields inherited from class com.pixelmed.dicom.DicomDictionaryBase
fullNameByTag, informationEntityByTag, nameByTag, tagByName, tagList, valueRepresentationsByTag
-
-
Constructor Summary
Constructors Constructor Description DicomDictionary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcreateFullNameByTag()Concrete sub-classes implement this method to create a map of attribute full names from tags for each tag in the dictionary.protected voidcreateInformationEntityByTag()Concrete sub-classes implement this method to create a map of information entities for each tag in the dictionary.protected voidcreateNameByTag()Concrete sub-classes implement this method to create a map of attribute names from tags for each tag in the dictionary.protected voidcreateTagByName()Concrete sub-classes implement this method to create a map of tags from attribute names for each tag in the dictionary.protected voidcreateTagList()Concrete sub-classes implement this method to create a list of all tags in the dictionary.protected voidcreateValueRepresentationsByTag()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
-
-
-
-
Method Detail
-
createTagList
protected void createTagList()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a list of all tags in the dictionary.
- Specified by:
createTagListin classDicomDictionaryBase
-
createValueRepresentationsByTag
protected void createValueRepresentationsByTag()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a map of value representations for each tag in the dictionary.
- Specified by:
createValueRepresentationsByTagin classDicomDictionaryBase
-
createInformationEntityByTag
protected void createInformationEntityByTag()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a map of information entities for each tag in the dictionary.
- Specified by:
createInformationEntityByTagin classDicomDictionaryBase
-
createTagByName
protected void createTagByName()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a map of tags from attribute names for each tag in the dictionary.
- Specified by:
createTagByNamein classDicomDictionaryBase
-
createNameByTag
protected void createNameByTag()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a map of attribute names from tags for each tag in the dictionary.
- Specified by:
createNameByTagin classDicomDictionaryBase
-
createFullNameByTag
protected void createFullNameByTag()
Description copied from class:DicomDictionaryBaseConcrete sub-classes implement this method to create a map of attribute full names from tags for each tag in the dictionary.
- Specified by:
createFullNameByTagin classDicomDictionaryBase
-
-