Package org.hl7.fhir

Class ImagingStudySeries

All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2

public class ImagingStudySeries extends BackboneElement implements org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
Representation of the content produced in a DICOM imaging study. A study comprises a set of series, each of which includes a set of Service-Object Pair Instances (SOP Instances - images or other data) acquired or produced in a common context. A series is of only one modality (e.g. X-ray, CT, MR, ultrasound), but a study may have multiple series of different modalities.

Java class for ImagingStudy.Series complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="ImagingStudy.Series">
   <complexContent>
     <extension base="{http://hl7.org/fhir}BackboneElement">
       <sequence>
         <element name="uid" type="{http://hl7.org/fhir}oid"/>
         <element name="number" type="{http://hl7.org/fhir}unsignedInt" minOccurs="0"/>
         <element name="modality" type="{http://hl7.org/fhir}Coding"/>
         <element name="description" type="{http://hl7.org/fhir}string" minOccurs="0"/>
         <element name="numberOfInstances" type="{http://hl7.org/fhir}unsignedInt"/>
         <element name="availability" type="{http://hl7.org/fhir}InstanceAvailability" minOccurs="0"/>
         <element name="url" type="{http://hl7.org/fhir}uri" minOccurs="0"/>
         <element name="bodySite" type="{http://hl7.org/fhir}Coding" minOccurs="0"/>
         <element name="laterality" type="{http://hl7.org/fhir}Coding" minOccurs="0"/>
         <element name="started" type="{http://hl7.org/fhir}dateTime" minOccurs="0"/>
         <element name="instance" type="{http://hl7.org/fhir}ImagingStudy.Instance" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • ImagingStudySeries

      public ImagingStudySeries()
  • Method Details

    • getUid

      public Oid getUid()
      Gets the value of the uid property.
      Returns:
      possible object is Oid
    • setUid

      public void setUid(Oid value)
      Sets the value of the uid property.
      Parameters:
      value - allowed object is Oid
    • getNumber

      public UnsignedInt getNumber()
      Gets the value of the number property.
      Returns:
      possible object is UnsignedInt
    • setNumber

      public void setNumber(UnsignedInt value)
      Sets the value of the number property.
      Parameters:
      value - allowed object is UnsignedInt
    • getModality

      public Coding getModality()
      Gets the value of the modality property.
      Returns:
      possible object is Coding
    • setModality

      public void setModality(Coding value)
      Sets the value of the modality property.
      Parameters:
      value - allowed object is Coding
    • getDescription

      public String getDescription()
      Gets the value of the description property.
      Returns:
      possible object is String
    • setDescription

      public void setDescription(String value)
      Sets the value of the description property.
      Parameters:
      value - allowed object is String
    • getNumberOfInstances

      public UnsignedInt getNumberOfInstances()
      Gets the value of the numberOfInstances property.
      Returns:
      possible object is UnsignedInt
    • setNumberOfInstances

      public void setNumberOfInstances(UnsignedInt value)
      Sets the value of the numberOfInstances property.
      Parameters:
      value - allowed object is UnsignedInt
    • getAvailability

      public InstanceAvailability getAvailability()
      Gets the value of the availability property.
      Returns:
      possible object is InstanceAvailability
    • setAvailability

      public void setAvailability(InstanceAvailability value)
      Sets the value of the availability property.
      Parameters:
      value - allowed object is InstanceAvailability
    • getUrl

      public Uri getUrl()
      Gets the value of the url property.
      Returns:
      possible object is Uri
    • setUrl

      public void setUrl(Uri value)
      Sets the value of the url property.
      Parameters:
      value - allowed object is Uri
    • getBodySite

      public Coding getBodySite()
      Gets the value of the bodySite property.
      Returns:
      possible object is Coding
    • setBodySite

      public void setBodySite(Coding value)
      Sets the value of the bodySite property.
      Parameters:
      value - allowed object is Coding
    • getLaterality

      public Coding getLaterality()
      Gets the value of the laterality property.
      Returns:
      possible object is Coding
    • setLaterality

      public void setLaterality(Coding value)
      Sets the value of the laterality property.
      Parameters:
      value - allowed object is Coding
    • getStarted

      public DateTime getStarted()
      Gets the value of the started property.
      Returns:
      possible object is DateTime
    • setStarted

      public void setStarted(DateTime value)
      Sets the value of the started property.
      Parameters:
      value - allowed object is DateTime
    • getInstance

      public List<ImagingStudyInstance> getInstance()
      Gets the value of the instance property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the instance property.

      For example, to add a new item, do as follows:

          getInstance().add(newItem);
       

      Objects of the following type(s) are allowed in the list ImagingStudyInstance

    • withUid

      public ImagingStudySeries withUid(Oid value)
    • withNumber

      public ImagingStudySeries withNumber(UnsignedInt value)
    • withModality

      public ImagingStudySeries withModality(Coding value)
    • withDescription

      public ImagingStudySeries withDescription(String value)
    • withNumberOfInstances

      public ImagingStudySeries withNumberOfInstances(UnsignedInt value)
    • withAvailability

      public ImagingStudySeries withAvailability(InstanceAvailability value)
    • withUrl

      public ImagingStudySeries withUrl(Uri value)
    • withBodySite

      public ImagingStudySeries withBodySite(Coding value)
    • withLaterality

      public ImagingStudySeries withLaterality(Coding value)
    • withStarted

      public ImagingStudySeries withStarted(DateTime value)
    • withInstance

      public ImagingStudySeries withInstance(ImagingStudyInstance... values)
    • withInstance

      public ImagingStudySeries withInstance(Collection<ImagingStudyInstance> values)
    • withModifierExtension

      public ImagingStudySeries withModifierExtension(Extension... values)
      Overrides:
      withModifierExtension in class BackboneElement
    • withModifierExtension

      public ImagingStudySeries withModifierExtension(Collection<Extension> values)
      Overrides:
      withModifierExtension in class BackboneElement
    • withExtension

      public ImagingStudySeries withExtension(Extension... values)
      Overrides:
      withExtension in class BackboneElement
    • withExtension

      public ImagingStudySeries withExtension(Collection<Extension> values)
      Overrides:
      withExtension in class BackboneElement
    • withId

      public ImagingStudySeries withId(String value)
      Overrides:
      withId in class BackboneElement
    • equals

      public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
      Specified by:
      equals in interface org.jvnet.jaxb2_commons.lang.Equals2
      Overrides:
      equals in class BackboneElement
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class BackboneElement
    • hashCode

      public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
      Specified by:
      hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode2
      Overrides:
      hashCode in class BackboneElement
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class BackboneElement
    • toString

      public String toString()
      Overrides:
      toString in class BackboneElement
    • append

      public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
      Specified by:
      append in interface org.jvnet.jaxb2_commons.lang.ToString2
      Overrides:
      append in class BackboneElement
    • appendFields

      public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
      Specified by:
      appendFields in interface org.jvnet.jaxb2_commons.lang.ToString2
      Overrides:
      appendFields in class BackboneElement
    • setInstance

      public void setInstance(List<ImagingStudyInstance> value)