Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * A flag to indicate that the server allows the client to create new identities on the server. If the update operation is used (client) or allowed (server) to a new location where a resource doesn't already exist. This means that the server allows the client to create new identities on the server
     * </p>
   */
  public RestResource setUpdateCreate( boolean theBoolean) {
    myUpdateCreate = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * Set this to true if the record is saying that the medication was NOT administered.
     * </p>
   */
  public BooleanDt getWasNotGiven() { 
    if (myWasNotGiven == null) {
      myWasNotGiven = new BooleanDt();
    }
    return myWasNotGiven;
  }
View Full Code Here

     * <b>Definition:</b>
     * Set this to true if the record is saying that the medication was NOT administered.
     * </p>
   */
  public MedicationAdministration setWasNotGiven( boolean theBoolean) {
    myWasNotGiven = 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

     * True if this item is marked as deleted in the list.
     * </p>
   */
  public BooleanDt getDeleted() { 
    if (myDeleted == null) {
      myDeleted = new BooleanDt();
    }
    return myDeleted;
  }
View Full Code Here

     * <b>Definition:</b>
     * True if this item is marked as deleted in the list.
     * </p>
   */
  public Entry setDeleted( boolean theBoolean) {
    myDeleted = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * A flag to indicate that this conformance statement is 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>
     * A flag to indicate that this conformance statement is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public Conformance setExperimental( boolean theBoolean) {
    myExperimental = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * A flag that indicates whether the application accepts unknown elements as part of a resource.
     * </p>
   */
  public BooleanDt getAcceptUnknown() { 
    if (myAcceptUnknown == null) {
      myAcceptUnknown = new BooleanDt();
    }
    return myAcceptUnknown;
  }
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.