Tabnine Logo
CDM.getTypedField
Code IndexAdd Tabnine to your IDE (free)

How to use
getTypedField
method
in
ca.uhn.hl7v2.model.v251.segment.CDM

Best Java code snippets using ca.uhn.hl7v2.model.v251.segment.CDM.getTypedField (Showing top 20 results out of 315)

origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-7: "Procedure Code" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getProcedureCode(int rep) { 
  CE retVal = this.getTypedField(7, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-7: "Procedure Code" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getCdm7_ProcedureCode(int rep) { 
  CE retVal = this.getTypedField(7, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns
 * CDM-8: "Active/Inactive Flag" - creates it if necessary
 */
public ID getActiveInactiveFlag() { 
  ID retVal = this.getTypedField(8, 0);
  return retVal;
}
 
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-9: "Inventory Number" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getCdm9_InventoryNumber(int rep) { 
  CE retVal = this.getTypedField(9, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns all repetitions of Contract Number (CDM-11).
 */
public CX[] getCdm11_ContractNumber() {
  CX[] retVal = this.getTypedField(11, new CX[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns all repetitions of Contract Organization (CDM-12).
 */
public XON[] getContractOrganization() {
  XON[] retVal = this.getTypedField(12, new XON[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns all repetitions of Charge Code Alias (CDM-2).
 */
public CE[] getCdm2_ChargeCodeAlias() {
  CE[] retVal = this.getTypedField(2, new CE[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * CDM-4: "Charge Description Long" - creates it if necessary
 */
public ST getCdm4_ChargeDescriptionLong() { 
  ST retVal = this.getTypedField(4, 0);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * CDM-8: "Active/Inactive Flag" - creates it if necessary
 */
public ID getCdm8_ActiveInactiveFlag() { 
  ID retVal = this.getTypedField(8, 0);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * CDM-9: "Inventory Number" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getCdm9_InventoryNumber(int rep) { 
  CE retVal = this.getTypedField(9, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * CDM-13: "Room Fee Indicator" - creates it if necessary
 */
public ID getCdm13_RoomFeeIndicator() { 
  ID retVal = this.getTypedField(13, 0);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns all repetitions of Charge Code Alias (CDM-2).
 */
public CE[] getChargeCodeAlias() {
  CE[] retVal = this.getTypedField(2, new CE[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-2: "Charge Code Alias" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getChargeCodeAlias(int rep) { 
  CE retVal = this.getTypedField(2, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-2: "Charge Code Alias" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getCdm2_ChargeCodeAlias(int rep) { 
  CE retVal = this.getTypedField(2, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns
 * CDM-5: "Description Override Indicator" - creates it if necessary
 */
public IS getDescriptionOverrideIndicator() { 
  IS retVal = this.getTypedField(5, 0);
  return retVal;
}
 
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns all repetitions of Inventory Number (CDM-9).
 */
public CE[] getInventoryNumber() {
  CE[] retVal = this.getTypedField(9, new CE[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v251

/**
 * Returns a specific repetition of
 * CDM-12: "Contract Organization" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public XON getContractOrganization(int rep) { 
  XON retVal = this.getTypedField(12, rep);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns all repetitions of Charge Code Alias (CDM-2).
 */
public CE[] getChargeCodeAlias() {
  CE[] retVal = this.getTypedField(2, new CE[0]);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * CDM-3: "Charge Description Short" - creates it if necessary
 */
public ST getCdm3_ChargeDescriptionShort() { 
  ST retVal = this.getTypedField(3, 0);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * CDM-7: "Procedure Code" - creates it if necessary
 *
 * @param rep The repetition index (0-indexed)
 */
public CE getProcedureCode(int rep) { 
  CE retVal = this.getTypedField(7, rep);
  return retVal;
}
ca.uhn.hl7v2.model.v251.segmentCDMgetTypedField

Popular methods of CDM

  • add
  • getMessage
  • getReps
  • init

Popular in Java

  • Making http requests using okhttp
  • setRequestProperty (URLConnection)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • Kernel (java.awt.image)
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • 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