Class Case

All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
Direct Known Subclasses:
CaseEvaluator

public class Case extends Expression implements org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
The Case operator allows for multiple conditional expressions to be chained together in a single expression, rather than having to nest multiple If operators. In addition, the comparand operand provides a variant on the case that allows a single value to be compared in each conditional. If a comparand is not provided, the type of each when element of the caseItems within the Case is expected to be boolean. If a comparand is provided, the type of each when element of the caseItems within the Case is expected to be of the same type as the comparand. An else element must always be provided. The static type of the then argument within the first caseItem determines the type of the result, and the then argument of each subsequent caseItem and the else argument must be of that same type.

Java class for Case complex type.

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

 <complexType name="Case">
   <complexContent>
     <extension base="{urn:hl7-org:elm:r1}Expression">
       <sequence>
         <element name="comparand" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
         <element name="caseItem" type="{urn:hl7-org:elm:r1}CaseItem" maxOccurs="unbounded"/>
         <element name="else" type="{urn:hl7-org:elm:r1}Expression"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • Case

      public Case()
  • Method Details

    • getComparand

      public Expression getComparand()
      Gets the value of the comparand property.
      Returns:
      possible object is Expression
    • setComparand

      public void setComparand(Expression value)
      Sets the value of the comparand property.
      Parameters:
      value - allowed object is Expression
    • getCaseItem

      public List<CaseItem> getCaseItem()
      Gets the value of the caseItem 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 JAXB object. This is why there is not a set method for the caseItem property.

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

          getCaseItem().add(newItem);
       

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

    • getElse

      public Expression getElse()
      Gets the value of the else property.
      Returns:
      possible object is Expression
    • setElse

      public void setElse(Expression value)
      Sets the value of the else property.
      Parameters:
      value - allowed object is Expression
    • withComparand

      public Case withComparand(Expression value)
    • withCaseItem

      public Case withCaseItem(CaseItem... values)
    • withCaseItem

      public Case withCaseItem(Collection<CaseItem> values)
    • withElse

      public Case withElse(Expression value)
    • withAnnotation

      public Case withAnnotation(CqlToElmBase... values)
      Overrides:
      withAnnotation in class Expression
    • withAnnotation

      public Case withAnnotation(Collection<CqlToElmBase> values)
      Overrides:
      withAnnotation in class Expression
    • withResultTypeSpecifier

      public Case withResultTypeSpecifier(TypeSpecifier value)
      Overrides:
      withResultTypeSpecifier in class Expression
    • withLocalId

      public Case withLocalId(String value)
      Overrides:
      withLocalId in class Expression
    • withLocator

      public Case withLocator(String value)
      Overrides:
      withLocator in class Expression
    • withResultTypeName

      public Case withResultTypeName(QName value)
      Overrides:
      withResultTypeName in class Expression
    • 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 Expression
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class Expression
    • 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 Expression
    • hashCode

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

      public String toString()
      Overrides:
      toString in class Expression
    • 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 Expression
    • 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 Expression