Tabnine Logo
CM_CCP
Code IndexAdd Tabnine to your IDE (free)

How to use
CM_CCP
in
ca.uhn.hl7v2.model.v23.datatype

Best Java code snippets using ca.uhn.hl7v2.model.v23.datatype.CM_CCP (Showing top 18 results out of 315)

origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns sensitivity correction factor (component 1).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getSensitivityCorrectionFactor() {
  return getTyped(0, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/** 
 * Creates a new CM_CCP type
 */
public CM_CCP(Message message) {
  super(message);
  init();
}
origin: ca.uhn.hapi/hapi-structures-v23

private void init() {
  data = new Type[6];    
  data[0] = new CM_WVI(getMessage());
  data[1] = new CM_CD_ELECTRODE(getMessage());
  data[2] = new CM_CSU(getMessage());
  data[3] = new CM_CCP(getMessage());
  data[4] = new NM(getMessage());
  data[5] = new CM_MDV(getMessage());
}
origin: ca.uhn.hapi/hapi-osgi-base

private void init() {
  data = new Type[3];    
  data[0] = new NM(getMessage());
  data[1] = new NM(getMessage());
  data[2] = new NM(getMessage());
}
origin: ca.uhn.hapi/hapi-osgi-base

private void init() {
  data = new Type[6];    
  data[0] = new CM_WVI(getMessage());
  data[1] = new CM_CD_ELECTRODE(getMessage());
  data[2] = new CM_CSU(getMessage());
  data[3] = new CM_CCP(getMessage());
  data[4] = new NM(getMessage());
  data[5] = new CM_MDV(getMessage());
}
origin: ca.uhn.hapi/hapi-structures-v23

private void init() {
  data = new Type[3];    
  data[0] = new NM(getMessage());
  data[1] = new NM(getMessage());
  data[2] = new NM(getMessage());
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns baseline (component 2).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp2_Baseline() {
  return getTyped(1, NM.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/** 
 * Creates a new CM_CCP type
 */
public CM_CCP(Message message) {
  super(message);
  init();
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns baseline (component 2).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getBaseline() {
  return getTyped(1, NM.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns sensitivity correction factor (component 1).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp1_SensitivityCorrectionFactor() {
  return getTyped(0, NM.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns baseline (component 2).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getBaseline() {
  return getTyped(1, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns sensitivity correction factor (component 1).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp1_SensitivityCorrectionFactor() {
  return getTyped(0, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns time skew (component 3).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getTimeSkew() {
  return getTyped(2, NM.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns time skew (component 3).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getTimeSkew() {
  return getTyped(2, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns sensitivity correction factor (component 1).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getSensitivityCorrectionFactor() {
  return getTyped(0, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns baseline (component 2).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp2_Baseline() {
  return getTyped(1, NM.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * Returns time skew (component 3).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp3_TimeSkew() {
  return getTyped(2, NM.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns time skew (component 3).  This is a convenience method that saves you from 
 * casting and handling an exception.
 */
public NM getCm_ccp3_TimeSkew() {
  return getTyped(2, NM.class);
}
ca.uhn.hl7v2.model.v23.datatypeCM_CCP

Javadoc

Represents an HL7 CM_CCP (channel calibration parameters) data type. This type consists of the following components:

  • sensitivity correction factor (NM)
  • baseline (NM)
  • time skew (NM)

Most used methods

  • <init>
    Creates a new CM_CCP type
  • getMessage
  • getTyped
  • init

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSupportFragmentManager (FragmentActivity)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • 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