Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.BooleanDt


     * If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system.
     * </p>
   */
  public BooleanDt getIsModifier() { 
    if (myIsModifier == null) {
      myIsModifier = new BooleanDt();
    }
    return myIsModifier;
  }
View Full Code Here


     * <b>Definition:</b>
     * If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system.
     * </p>
   */
  public StructureElementDefinition setIsModifier( boolean theBoolean) {
    myIsModifier = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Whether items in the list have a meaningful order
     * </p>
   */
  public BooleanDt getOrdered() { 
    if (myOrdered == null) {
      myOrdered = new BooleanDt();
    }
    return myOrdered;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether items in the list have a meaningful order
     * </p>
   */
  public ListResource setOrdered( boolean theBoolean) {
    myOrdered = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * This valueset was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public BooleanDt getExperimental() { 
    if (myExperimental == null) {
      myExperimental = new BooleanDt();
    }
    return myExperimental;
  }
View Full Code Here

     * <b>Definition:</b>
     * This valueset was authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public ValueSet setExperimental( boolean theBoolean) {
    myExperimental = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Whether this is intended to be used with an extensible binding or not
     * </p>
   */
  public BooleanDt getExtensible() { 
    if (myExtensible == null) {
      myExtensible = new BooleanDt();
    }
    return myExtensible;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether this is intended to be used with an extensible binding or not
     * </p>
   */
  public ValueSet setExtensible( boolean theBoolean) {
    myExtensible = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If code comparison is case sensitive when codes within this system are compared to each other
     * </p>
   */
  public BooleanDt getCaseSensitive() { 
    if (myCaseSensitive == null) {
      myCaseSensitive = new BooleanDt();
    }
    return myCaseSensitive;
  }
View Full Code Here

     * If the matching elements have to occur in the same order as defined in the profile
     * </p>
   */
  public BooleanDt getOrdered() { 
    if (myOrdered == null) {
      myOrdered = new BooleanDt();
    }
    return myOrdered;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.BooleanDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.