Tabnine Logo
StructureMap.setName
Code IndexAdd Tabnine to your IDE (free)

How to use
setName
method
in
org.hl7.fhir.r4.model.StructureMap

Best Java code snippets using org.hl7.fhir.r4.model.StructureMap.setName (Showing top 4 results out of 315)

origin: jamesagnew/hapi-fhir

public StructureMap parse(String text, String srcName) throws FHIRException {
  FHIRLexer lexer = new FHIRLexer(text, srcName);
  if (lexer.done())
    throw lexer.error("Map Input cannot be empty");
  lexer.skipComments();
  lexer.token("map");
  StructureMap result = new StructureMap();
  result.setUrl(lexer.readConstant("url"));
  lexer.token("=");
  result.setName(lexer.readConstant("name"));
  lexer.skipComments();
  while (lexer.hasToken("conceptmap"))
    parseConceptMap(result, lexer);
  while (lexer.hasToken("uses"))
    parseUses(result, lexer);
  while (lexer.hasToken("imports"))
    parseImports(result, lexer);
  
  while (!lexer.done()) {
    parseGroup(result, lexer);    
  }
  return result;
}
origin: jamesagnew/hapi-fhir

if (src.hasVersion())
 tgt.setVersion(src.getVersion());
tgt.setName(src.getName());
tgt.setStatus(convertConformanceResourceStatus(src.getStatus()));
for (org.hl7.fhir.dstu2016may.model.Identifier t : src.getIdentifier())
origin: ca.uhn.hapi.fhir/hapi-fhir-structures-r4

public StructureMap parse(String text, String srcName) throws FHIRException {
  FHIRLexer lexer = new FHIRLexer(text, srcName);
  if (lexer.done())
    throw lexer.error("Map Input cannot be empty");
  lexer.skipComments();
  lexer.token("map");
  StructureMap result = new StructureMap();
  result.setUrl(lexer.readConstant("url"));
  lexer.token("=");
  result.setName(lexer.readConstant("name"));
  lexer.skipComments();
  while (lexer.hasToken("conceptmap"))
    parseConceptMap(result, lexer);
  while (lexer.hasToken("uses"))
    parseUses(result, lexer);
  while (lexer.hasToken("imports"))
    parseImports(result, lexer);
  
  while (!lexer.done()) {
    parseGroup(result, lexer);    
  }
  return result;
}
origin: ca.uhn.hapi.fhir/hapi-fhir-converter

if (src.hasVersion())
 tgt.setVersion(src.getVersion());
tgt.setName(src.getName());
tgt.setStatus(convertConformanceResourceStatus(src.getStatus()));
for (org.hl7.fhir.dstu2016may.model.Identifier t : src.getIdentifier())
org.hl7.fhir.r4.modelStructureMapsetName

Popular methods of StructureMap

  • <init>
    Constructor
  • addContact
  • addGroup
  • addIdentifier
  • addImport
  • addJurisdiction
  • addStructure
  • addUseContext
  • getContact
  • getCopyright
  • getDate
  • getExperimental
  • getDate,
  • getExperimental,
  • getGroup,
  • getIdentifier,
  • getImport,
  • getJurisdiction,
  • getName,
  • getStatus,
  • getStructure,
  • getUrl

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • getApplicationContext (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top plugins for Android Studio
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