Class EvidenceReport.Section

  • All Implemented Interfaces:
    Visitable
    Enclosing class:
    EvidenceReport

    public static class EvidenceReport.Section
    extends BackboneElement
    The root of the sections that make up the composition.
    • Method Detail

      • getTitle

        public String getTitle()
        The label for this particular section. This will be part of the rendered content for the document, and is often used to build a table of contents.
        Returns:
        An immutable object of type String that may be null.
      • getFocus

        public CodeableConcept getFocus()
        A code identifying the kind of content contained within the section. This should be consistent with the section title.
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • getFocusReference

        public Reference getFocusReference()
        A definitional Resource identifying the kind of content contained within the section. This should be consistent with the section title.
        Returns:
        An immutable object of type Reference that may be null.
      • getAuthor

        public java.util.List<Reference> getAuthor()
        Identifies who is responsible for the information in this section, not necessarily who typed it in.
        Returns:
        An unmodifiable list containing immutable objects of type Reference that may be empty.
      • getText

        public Narrative getText()
        A human-readable narrative that contains the attested content of the section, used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is peferred to contain sufficient detail to make it acceptable for a human to just read the narrative.
        Returns:
        An immutable object of type Narrative that may be null.
      • getMode

        public SectionMode getMode()
        How the entry list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted.
        Returns:
        An immutable object of type SectionMode that may be null.
      • getOrderedBy

        public CodeableConcept getOrderedBy()
        Specifies the order applied to the items in the section entries.
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • getEntryClassifier

        public java.util.List<CodeableConcept> getEntryClassifier()
        Specifies any type of classification of the evidence report.
        Returns:
        An unmodifiable list containing immutable objects of type CodeableConcept that may be empty.
      • getEntryReference

        public java.util.List<Reference> getEntryReference()
        A reference to the actual resource from which the narrative in the section is derived.
        Returns:
        An unmodifiable list containing immutable objects of type Reference that may be empty.
      • getEntryQuantity

        public java.util.List<Quantity> getEntryQuantity()
        Quantity as content.
        Returns:
        An unmodifiable list containing immutable objects of type Quantity that may be empty.
      • getEmptyReason

        public CodeableConcept getEmptyReason()
        If the section is empty, why the list is empty. An empty section typically has some text explaining the empty reason.
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • getSection

        public java.util.List<EvidenceReport.Section> getSection()
        A nested sub-section within this section.
        Returns:
        An unmodifiable list containing immutable objects of type EvidenceReport.Section that may be empty.
      • accept

        public void accept​(java.lang.String elementName,
                           int elementIndex,
                           Visitor visitor)
        Description copied from interface: Visitable
        Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:
         if (visitor.preVisit(this)) {
             visitor.visitStart(elementName, elementIndex, this);
             if (visitor.visit(elementName, elementIndex, this)) {
                 // visit children
             }
             visitor.visitEnd(elementName, elementIndex, this);
             visitor.postVisit(this);
         }
         
        Specified by:
        accept in interface Visitable
        Specified by:
        accept in class AbstractVisitable
        Parameters:
        elementName - the name of the element in the context of this visit
        elementIndex - the index of the element in a list or -1 if it is not contained within a List
        visitor - the visitor to use
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object