Class ContentItemWithReference

    • Field Detail

      • referencedContentItemIdentifier

        protected java.lang.String referencedContentItemIdentifier
    • Constructor Detail

      • ContentItemWithReference

        protected ContentItemWithReference​(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
      • ContentItemWithReference

        public ContentItemWithReference​(ContentItem p,
                                        java.lang.String relationshipType,
                                        java.lang.String referencedContentItemIdentifier)
                                 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.

        Parameters:
        p - the parent
        relationshipType - added only if not null or zero length
        referencedContentItemIdentifier - identifier of reference content item
        Throws:
        DicomException - if error in DICOM encoding
    • Method Detail

      • getConceptValue

        public java.lang.String getConceptValue()

        Get a string representation of the value of the concept.

        Always returns an empty string for a ContentItemWithReference.

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

        public java.lang.String getReferencedContentItemIdentifier()

        Get the Referenced Content Item Identifier, if present.

        Overrides:
        getReferencedContentItemIdentifier in class ContentItem
        Returns:
        the period (not backslash) delimited item references, or an empty string
      • getReferencedContentItemIdentifierArray

        public int[] getReferencedContentItemIdentifierArray()

        Get the Referenced Content Item Identifier, if present.

        Overrides:
        getReferencedContentItemIdentifierArray in class ContentItem
        Returns:
        an array of integers representing the separated components of the Referenced Content Item Identifier, including the first (root) identifier of 1, or null if none or empty
      • 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