Tabnine Logo
GenericParser.setPipeParserAsPrimary
Code IndexAdd Tabnine to your IDE (free)

How to use
setPipeParserAsPrimary
method
in
ca.uhn.hl7v2.parser.GenericParser

Best Java code snippets using ca.uhn.hl7v2.parser.GenericParser.setPipeParserAsPrimary (Showing top 4 results out of 315)

origin: ca.uhn.hapi/hapi-base

/**
 * @param context the HapiContext to be used
 */
public GenericParser(HapiContext context) {
  super(context);
  pipeParser = new PipeParser(context);
  xmlParser = new DefaultXMLParser(context);
  setPipeParserAsPrimary();
}
origin: ca.uhn.hapi/hapi-base

/**
 * Creates a new instance of GenericParser
 * 
 * @param theFactory custom factory to use for model class lookup
 */
public GenericParser(ModelClassFactory theFactory) {
  super(theFactory);
  pipeParser = new PipeParser(theFactory);
  xmlParser = new DefaultXMLParser(theFactory);
  setPipeParserAsPrimary();
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * @param context the HapiContext to be used
 */
public GenericParser(HapiContext context) {
  super(context);
  pipeParser = new PipeParser(context);
  xmlParser = new DefaultXMLParser(context);
  setPipeParserAsPrimary();
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Creates a new instance of GenericParser
 * 
 * @param theFactory custom factory to use for model class lookup
 */
public GenericParser(ModelClassFactory theFactory) {
  super(theFactory);
  pipeParser = new PipeParser(theFactory);
  xmlParser = new DefaultXMLParser(theFactory);
  setPipeParserAsPrimary();
}
ca.uhn.hl7v2.parserGenericParsersetPipeParserAsPrimary

Javadoc

Sets the underlying PipeParser as the primary parser, so that subsequent calls to encode() will return traditionally encoded messages, and an attempt will be made to use the PipeParser first for parsing. This is the default setting.

Popular methods of GenericParser

  • <init>
    Creates a new instance of GenericParser
  • parse
  • encode
  • getAppropriateParser
    Checks the encoding of the message using getEncoding(), and returns the corresponding parser (either
  • getCriticalResponseData
    Returns a minimal amount of data from a message string, including only the data needed to send a re
  • getEncoding
    Returns a String representing the encoding of the given message, if the encoding is recognized. For
  • setValidationContext
  • compile
  • setListener

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • JFileChooser (javax.swing)
  • Top plugins for WebStorm
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