Tabnine Logo
Procedure$ProcedureFocalDeviceComponent.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.hl7.fhir.dstu3.model.Procedure$ProcedureFocalDeviceComponent
constructor

Best Java code snippets using org.hl7.fhir.dstu3.model.Procedure$ProcedureFocalDeviceComponent.<init> (Showing top 4 results out of 315)

origin: ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3

public ProcedureFocalDeviceComponent addFocalDevice() { //3
 ProcedureFocalDeviceComponent t = new ProcedureFocalDeviceComponent();
 if (this.focalDevice == null)
  this.focalDevice = new ArrayList<ProcedureFocalDeviceComponent>();
 this.focalDevice.add(t);
 return t;
}
origin: ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3

public ProcedureFocalDeviceComponent copy() {
 ProcedureFocalDeviceComponent dst = new ProcedureFocalDeviceComponent();
 copyValues(dst);
 dst.action = action == null ? null : action.copy();
 dst.manipulated = manipulated == null ? null : manipulated.copy();
 return dst;
}
origin: ca.uhn.hapi.fhir/hapi-fhir-converter

public org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent convertProcedureFocalDeviceComponent(org.hl7.fhir.instance.model.Procedure.ProcedureFocalDeviceComponent src) throws FHIRException {
 if (src == null || src.isEmpty())
  return null;
 org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent tgt = new org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent();
 copyElement(src, tgt);
 tgt.setAction(convertCodeableConcept(src.getAction()));
 tgt.setManipulated(convertReference(src.getManipulated()));
 return tgt;
}
origin: jamesagnew/hapi-fhir

public org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent convertProcedureFocalDeviceComponent(org.hl7.fhir.instance.model.Procedure.ProcedureFocalDeviceComponent src) throws FHIRException {
 if (src == null || src.isEmpty())
  return null;
 org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent tgt = new org.hl7.fhir.dstu3.model.Procedure.ProcedureFocalDeviceComponent();
 copyElement(src, tgt);
 tgt.setAction(convertCodeableConcept(src.getAction()));
 tgt.setManipulated(convertReference(src.getManipulated()));
 return tgt;
}
org.hl7.fhir.dstu3.modelProcedure$ProcedureFocalDeviceComponent<init>

Javadoc

Constructor

Popular methods of Procedure$ProcedureFocalDeviceComponent

  • getAction
  • getManipulated
  • isEmpty
  • castToCodeableConcept
  • castToReference
  • compareDeep
  • copy
  • copyValues
  • setAction
  • setManipulated

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • getApplicationContext (Context)
  • setScale (BigDecimal)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now