Class ContentItemWithValue

    • Field Detail

      • valueType

        protected java.lang.String valueType
      • referencedContentItemIdentifier

        protected java.lang.String referencedContentItemIdentifier
    • Constructor Detail

      • ContentItemWithValue

        protected ContentItemWithValue​(ContentItem p,
                                       AttributeList l)

        Construct a content item for a list of attributes, and add it as a child of the specified parent.

        The constructor is protected. Instances of specific types of content items should normally be created by using the ContentItemFactory.

        Parameters:
        p - the parent
        l - the list of attributes
      • ContentItemWithValue

        protected ContentItemWithValue​(ContentItem p,
                                       java.lang.String valueType,
                                       java.lang.String relationshipType,
                                       CodedSequenceItem conceptName,
                                       java.lang.String observationDateTime,
                                       java.lang.String observationUID)
                                throws DicomException

        Construct a content item of a specified type and relationship, creating a new AttributeList, and add it as a child of the specified parent.

        The constructor is protected. Instances of specific types of content items should normally be created by using the ContentItemFactory.

        Parameters:
        p - the parent
        valueType - value type
        relationshipType - added only if not null or zero length
        conceptName - coded concept name
        observationDateTime - Observation DateTime, if any
        observationUID - Observation UID, if any
        Throws:
        DicomException - if error in DICOM encoding
      • ContentItemWithValue

        protected ContentItemWithValue​(ContentItem p,
                                       java.lang.String valueType,
                                       java.lang.String relationshipType,
                                       CodedSequenceItem conceptName)
                                throws DicomException

        Construct a content item of a specified type and relationship, creating a new AttributeList, and add it as a child of the specified parent.

        The constructor is protected. Instances of specific types of content items should normally be created by using the ContentItemFactory.

        Parameters:
        p - the parent
        valueType - value type
        relationshipType - added only if not null or zero length
        conceptName - coded concept name
        Throws:
        DicomException - if error in DICOM encoding
    • Method Detail

      • getValueType

        public java.lang.String getValueType()

        Get the value type of this content item.

        Overrides:
        getValueType in class ContentItem
        Returns:
        the value type (the string used in the DICOM standard in the Value Type attribute)
      • getConceptNameAndValue

        public java.lang.String getConceptNameAndValue()

        Get a string representation of the concept name and the value of the concept.

        The exact form of the returned string is specific to the type of ContentItem.

        Overrides:
        getConceptNameAndValue in class ContentItem
        Returns:
        a String representation of the name and value, or an empty string
      • getConceptValue

        public abstract java.lang.String getConceptValue()

        Get a string representation of the value of the concept.

        The exact form of the returned string is specific to the type of ContentItem.

        Specified by:
        getConceptValue in class ContentItem
        Returns:
        a String representation of the name and value, or an empty string
      • getConceptNameCodeMeaning

        public java.lang.String getConceptNameCodeMeaning()

        Get the value of the code meaning of the Concept Name as a string, if present and applicable.

        Overrides:
        getConceptNameCodeMeaning in class ContentItem
        Returns:
        the code meaning of the Concept Name, or an empty string
      • getConceptNameCodeValue

        public java.lang.String getConceptNameCodeValue()

        Get the value of the code value of the Concept Name as a string, if present and applicable.

        Overrides:
        getConceptNameCodeValue in class ContentItem
        Returns:
        the code value of the Concept Name, or an empty string
      • getConceptNameCodingSchemeDesignator

        public java.lang.String getConceptNameCodingSchemeDesignator()

        Get the value of the coding scheme designator of the Concept Name as a string, if present and applicable.

        Overrides:
        getConceptNameCodingSchemeDesignator in class ContentItem
        Returns:
        the coding scheme designator of the Concept Name, or an empty string
      • toString

        public java.lang.String toString()

        Get a human-readable string representation of the content item.

        Overrides:
        toString in class java.lang.Object
        Returns:
        the string representation of the content item
      • contentItemNameMatchesCodeValueAndCodingSchemeDesignator

        public boolean contentItemNameMatchesCodeValueAndCodingSchemeDesignator​(java.lang.String cvWanted,
                                                                                java.lang.String csdWanted)
        Description copied from class: ContentItem
        Test if the coded concept name of the content item matches the specified code value and coding scheme designator. This is more robust than checking code meaning, which may have synomyms, and there is no need to also test code meaning. Does NOT follow references.
        Specified by:
        contentItemNameMatchesCodeValueAndCodingSchemeDesignator in class ContentItem
        Parameters:
        cvWanted - the code value wanted
        csdWanted - the coding scheme designator wanted
        Returns:
        true if matches