Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays)
     * </p>
   */
  public CodingDt setPrimary( boolean theBoolean) {
    myPrimary = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element.  If false, the element may be ignored and not supported
     * </p>
   */
  public BooleanDt getMustSupport() { 
    if (myMustSupport == null) {
      myMustSupport = new BooleanDt();
    }
    return myMustSupport;
  }
View Full Code Here

     * <b>Definition:</b>
     * If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element.  If false, the element may be ignored and not supported
     * </p>
   */
  public StructureElementDefinition setMustSupport( boolean theBoolean) {
    myMustSupport = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * 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

     * If true, then conformant systems may use additional codes or (where the data type permits) text alone to convey concepts not covered by the set of codes identified in the binding.  If false, then conformant systems are constrained to the provided codes alone
     * </p>
   */
  public BooleanDt getIsExtensible() { 
    if (myIsExtensible == null) {
      myIsExtensible = new BooleanDt();
    }
    return myIsExtensible;
  }
View Full Code Here

     * <b>Definition:</b>
     * If true, then conformant systems may use additional codes or (where the data type permits) text alone to convey concepts not covered by the set of codes identified in the binding.  If false, then conformant systems are constrained to the provided codes alone
     * </p>
   */
  public StructureElementDefinitionBinding setIsExtensible( boolean theBoolean) {
    myIsExtensible = 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

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.