Codota Logo
BoundCodeDt.<init>
Code IndexAdd Codota to your IDE (free)

How to use
ca.uhn.fhir.model.primitive.BoundCodeDt
constructor

Best Java code snippets using ca.uhn.fhir.model.primitive.BoundCodeDt.<init> (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: jamesagnew/hapi-fhir

/**
 * Add a value for <b>aggregation</b> ()
 *
 * <p>
 * <b>Definition:</b>
 * If the type is a reference to another resource, how the resource is or can be aggregated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle.
 * </p> 
 */
public BoundCodeDt<AggregationModeEnum> addAggregation() {
  BoundCodeDt<AggregationModeEnum> retVal = new BoundCodeDt<AggregationModeEnum>(AggregationModeEnum.VALUESET_BINDER);
  getAggregation().add(retVal);
  return retVal;
}
origin: jamesagnew/hapi-fhir

/**
 * Add a value for <b>representation</b> ()
 *
 * <p>
 * <b>Definition:</b>
 * Codes that define how this element is represented in instances, when the deviation varies from the normal case
 * </p> 
 */
public BoundCodeDt<PropertyRepresentationEnum> addRepresentation() {
  BoundCodeDt<PropertyRepresentationEnum> retVal = new BoundCodeDt<PropertyRepresentationEnum>(PropertyRepresentationEnum.VALUESET_BINDER);
  getRepresentation().add(retVal);
  return retVal;
}
origin: jamesagnew/hapi-fhir

/**
 * Add a value for <b>representation</b> ()
 *
 * <p>
 * <b>Definition:</b>
 * Codes that define how this element is represented in instances, when the deviation varies from the normal case
 * </p> 
 */
public BoundCodeDt<PropertyRepresentationEnum> addRepresentation() {
  BoundCodeDt<PropertyRepresentationEnum> retVal = new BoundCodeDt<PropertyRepresentationEnum>(PropertyRepresentationEnum.VALUESET_BINDER);
  getRepresentation().add(retVal);
  return retVal;
}
origin: jamesagnew/hapi-fhir

/**
 * Add a value for <b>aggregation</b> ()
 *
 * <p>
 * <b>Definition:</b>
 * If the type is a reference to another resource, how the resource is or can be aggreated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle
 * </p> 
 */
public BoundCodeDt<AggregationModeEnum> addAggregation() {
  BoundCodeDt<AggregationModeEnum> retVal = new BoundCodeDt<AggregationModeEnum>(AggregationModeEnum.VALUESET_BINDER);
  getAggregation().add(retVal);
  return retVal;
}
origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>mode</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Indicates whether a resource instance represents a specific location or a class of locations
   * </p> 
   */
  public Location setMode(LocationModeEnum theValue) {
    setMode(new BoundCodeDt<LocationModeEnum>(LocationModeEnum.VALUESET_BINDER, theValue));
    
/*
    getModeElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>use</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * The purpose of this address
   * </p> 
   */
  public AddressDt setUse(AddressUseEnum theValue) {
    setUse(new BoundCodeDt<AddressUseEnum>(AddressUseEnum.VALUESET_BINDER, theValue));
    
/*
    getUseElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>severity</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Identifies the impact constraint violation has on the conformance of the instance
   * </p> 
   */
  public Constraint setSeverity(ConstraintSeverityEnum theValue) {
    setSeverity(new BoundCodeDt<ConstraintSeverityEnum>(ConstraintSeverityEnum.VALUESET_BINDER, theValue));
    
/*
    getSeverityElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>durationUnits</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * The units of time for the duration, in UCUM units
   * </p> 
   */
  public Repeat setDurationUnits(UnitsOfTimeEnum theValue) {
    setDurationUnits(new BoundCodeDt<UnitsOfTimeEnum>(UnitsOfTimeEnum.VALUESET_BINDER, theValue));
    
/*
    getDurationUnitsElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>op</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * The kind of operation to perform as a part of the filter criteria
   * </p> 
   */
  public ComposeIncludeFilter setOp(FilterOperatorEnum theValue) {
    setOp(new BoundCodeDt<FilterOperatorEnum>(FilterOperatorEnum.VALUESET_BINDER, theValue));
    
/*
    getOpElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>system</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Telecommunications form for contact point - what communications system is required to make use of the contact
   * </p> 
   */
  public ContactPointDt setSystem(ContactPointSystemEnum theValue) {
    setSystem(new BoundCodeDt<ContactPointSystemEnum>(ContactPointSystemEnum.VALUESET_BINDER, theValue));
    
/*
    getSystemElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>status</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * 
   * </p> 
   */
  public Location setStatus(LocationStatusEnum theValue) {
    setStatus(new BoundCodeDt<LocationStatusEnum>(LocationStatusEnum.VALUESET_BINDER, theValue));
    
/*
    getStatusElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>gender</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Administrative Gender - the gender that the contact person is considered to have for administration and record keeping purposes.
   * </p> 
   */
  public Contact setGender(AdministrativeGenderEnum theValue) {
    setGender(new BoundCodeDt<AdministrativeGenderEnum>(AdministrativeGenderEnum.VALUESET_BINDER, theValue));
    
/*
    getGenderElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>use</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Identifies the purpose for this name
   * </p> 
   */
  public HumanNameDt setUse(NameUseEnum theValue) {
    setUse(new BoundCodeDt<NameUseEnum>(NameUseEnum.VALUESET_BINDER, theValue));
    
/*
    getUseElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>periodUnits</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * The units of time for the period in UCUM units
   * </p> 
   */
  public Repeat setPeriodUnits(UnitsOfTimeEnum theValue) {
    setPeriodUnits(new BoundCodeDt<UnitsOfTimeEnum>(UnitsOfTimeEnum.VALUESET_BINDER, theValue));
    
/*
    getPeriodUnitsElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>status</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Status of the Device availability.
   * </p> 
   */
  public Device setStatus(DeviceStatusEnum theValue) {
    setStatus(new BoundCodeDt<DeviceStatusEnum>(DeviceStatusEnum.VALUESET_BINDER, theValue));
    
/*
    getStatusElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>status</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Indicates the current state of this list
   * </p> 
   */
  public ListResource setStatus(ListStatusEnum theValue) {
    setStatus(new BoundCodeDt<ListStatusEnum>(ListStatusEnum.VALUESET_BINDER, theValue));
    
/*
    getStatusElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>type</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both
   * </p> 
   */
  public AddressDt setType(AddressTypeEnum theValue) {
    setType(new BoundCodeDt<AddressTypeEnum>(AddressTypeEnum.VALUESET_BINDER, theValue));
    
/*
    getTypeElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>action</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * Indicator for type of action performed during the event that generated the audit
   * </p> 
   */
  public Event setAction(AuditEventActionEnum theValue) {
    setAction(new BoundCodeDt<AuditEventActionEnum>(AuditEventActionEnum.VALUESET_BINDER, theValue));
    
/*
    getActionElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>type</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * An identifier for the type of network access point that originated the audit event
   * </p> 
   */
  public ParticipantNetwork setType(AuditEventParticipantNetworkTypeEnum theValue) {
    setType(new BoundCodeDt<AuditEventParticipantNetworkTypeEnum>(AuditEventParticipantNetworkTypeEnum.VALUESET_BINDER, theValue));
    
/*
    getTypeElement().setValueAsEnum(theValue);
*/
    return this;
  }

origin: jamesagnew/hapi-fhir

  /**
   * Sets the value(s) for <b>status</b> ()
   *
   * <p>
   * <b>Definition:</b>
   * The status of the value set
   * </p> 
   */
  public ValueSet setStatus(ConformanceResourceStatusEnum theValue) {
    setStatus(new BoundCodeDt<ConformanceResourceStatusEnum>(ConformanceResourceStatusEnum.VALUESET_BINDER, theValue));
    
/*
    getStatusElement().setValueAsEnum(theValue);
*/
    return this;
  }

ca.uhn.fhir.model.primitiveBoundCodeDt<init>

Popular methods of BoundCodeDt

  • getValueAsEnum
  • getValue
  • setValue
  • getValueAsString
  • setValueAsEnum
  • setValueAsString
  • isEmpty
  • getBinder

Popular in Java

  • Reading from database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • startActivity (Activity)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Socket (java.net)
    Provides a client-side TCP socket.
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • JLabel (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now