Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The version of the FHIR specification on which this conformance statement is based
     * </p>
   */
  public Conformance setFhirVersion( String theId) {
    myFhirVersion = new IdDt(theId);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * A reference to an invariant that may make additional statements about the cardinality or value in the instance
     * </p>
   */
  public IdDt addCondition() {
    IdDt newType = new IdDt();
    getCondition().add(newType);
    return newType;
  }
View Full Code Here

   */
  public StructureElementDefinition addCondition( String theId) {
    if (myCondition == null) {
      myCondition = new java.util.ArrayList<IdDt>();
    }
    myCondition.add(new IdDt(theId));
    return this;
  }
View Full Code Here

     * Allows identification of which elements have their cardinalities impacted by the constraint.  Will not be referenced for constraints that do not affect cardinality
     * </p>
   */
  public IdDt getKey() { 
    if (myKey == null) {
      myKey = new IdDt();
    }
    return myKey;
  }
View Full Code Here

     * <b>Definition:</b>
     * Allows identification of which elements have their cardinalities impacted by the constraint.  Will not be referenced for constraints that do not affect cardinality
     * </p>
   */
  public StructureElementDefinitionConstraint setKey( String theId) {
    myKey = new IdDt(theId);
    return this;
  }
View Full Code Here

     * Designates which child element is used to discriminate between the slices when processing an instance. The value of the child element in the instance SHALL completely distinguish which slice the element in the resource matches based on the allowed values for that element in each of the slices
     * </p>
   */
  public IdDt getDiscriminator() { 
    if (myDiscriminator == null) {
      myDiscriminator = new IdDt();
    }
    return myDiscriminator;
  }
View Full Code Here

     * <b>Definition:</b>
     * Designates which child element is used to discriminate between the slices when processing an instance. The value of the child element in the instance SHALL completely distinguish which slice the element in the resource matches based on the allowed values for that element in each of the slices
     * </p>
   */
  public StructureElementSlicing setDiscriminator( String theId) {
    myDiscriminator = new IdDt(theId);
    return this;
  }
View Full Code Here

     * The version of the FHIR specification on which this profile is based
     * </p>
   */
  public IdDt getFhirVersion() { 
    if (myFhirVersion == null) {
      myFhirVersion = new IdDt();
    }
    return myFhirVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * The version of the FHIR specification on which this profile is based
     * </p>
   */
  public Profile setFhirVersion( String theId) {
    myFhirVersion = new IdDt(theId);
    return this;
  }
View Full Code Here

     * An Internal id that is used to identify this mapping set when specific mappings are made
     * </p>
   */
  public IdDt getIdentity() { 
    if (myIdentity == null) {
      myIdentity = new IdDt();
    }
    return myIdentity;
  }
View Full Code Here

TOP

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

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.