congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
BAR_P01_VISIT.getTyped
Code IndexAdd Tabnine to your IDE (free)

How to use
getTyped
method
in
ca.uhn.hl7v2.model.v24.group.BAR_P01_VISIT

Best Java code snippets using ca.uhn.hl7v2.model.v24.group.BAR_P01_VISIT.getTyped (Showing top 20 results out of 315)

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

/**
 * Returns a specific repetition of
 * OBX (Observation/Result) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public OBX getOBX(int rep) { 
  OBX retVal = getTyped("OBX", rep, OBX.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * DRG (Diagnosis Related Group) - creates it if necessary
 */
public DRG getDRG() { 
  DRG retVal = getTyped("DRG", DRG.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * DG1 (Diagnosis) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public DG1 getDG1(int rep) { 
  DG1 retVal = getTyped("DG1", rep, DG1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * PROCEDURE (a Group object) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public BAR_P01_PROCEDURE getPROCEDURE(int rep) { 
  BAR_P01_PROCEDURE retVal = getTyped("PROCEDURE", rep, BAR_P01_PROCEDURE.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * the first repetition of 
 * INSURANCE (a Group object) - creates it if necessary
 */
public BAR_P01_INSURANCE getINSURANCE() { 
  BAR_P01_INSURANCE retVal = getTyped("INSURANCE", BAR_P01_INSURANCE.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns a specific repetition of
 * AL1 (Patient allergy information) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public AL1 getAL1(int rep) { 
  AL1 retVal = getTyped("AL1", rep, AL1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * GT1 (Guarantor) - creates it if necessary
 */
public GT1 getGT1() { 
  GT1 retVal = getTyped("GT1", GT1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * NK1 (Next of kin / associated parties) - creates it if necessary
 */
public NK1 getNK1() { 
  NK1 retVal = getTyped("NK1", NK1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * INSURANCE (a Group object) - creates it if necessary
 */
public BAR_P01_INSURANCE getINSURANCE() { 
  BAR_P01_INSURANCE retVal = getTyped("INSURANCE", BAR_P01_INSURANCE.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * PV1 (Patient visit) - creates it if necessary
 */
public PV1 getPV1() { 
  PV1 retVal = getTyped("PV1", PV1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * GT1 (Guarantor) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public GT1 getGT1(int rep) { 
  GT1 retVal = getTyped("GT1", rep, GT1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * NK1 (Next of kin / associated parties) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public NK1 getNK1(int rep) { 
  NK1 retVal = getTyped("NK1", rep, NK1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * ACC (Accident) - creates it if necessary
 */
public ACC getACC() { 
  ACC retVal = getTyped("ACC", ACC.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * PV2 (Patient visit - additional information) - creates it if necessary
 */
public PV2 getPV2() { 
  PV2 retVal = getTyped("PV2", PV2.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * ROL (Role) - creates it if necessary
 */
public ROL getROL() { 
  ROL retVal = getTyped("ROL", ROL.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * DB1 (Disability) - creates it if necessary
 */
public DB1 getDB1() { 
  DB1 retVal = getTyped("DB1", DB1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns
 * the first repetition of 
 * DG1 (Diagnosis) - creates it if necessary
 */
public DG1 getDG1() { 
  DG1 retVal = getTyped("DG1", DG1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns a specific repetition of
 * PROCEDURE (a Group object) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public BAR_P01_PROCEDURE getPROCEDURE(int rep) { 
  BAR_P01_PROCEDURE retVal = getTyped("PROCEDURE", rep, BAR_P01_PROCEDURE.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v24

/**
 * Returns a specific repetition of
 * GT1 (Guarantor) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public GT1 getGT1(int rep) { 
  GT1 retVal = getTyped("GT1", rep, GT1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * OBX (Observation/Result) - creates it if necessary
 *
 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
 * @throws HL7Exception if the repetition requested is more than one 
 *     greater than the number of existing repetitions.
 */
public OBX getOBX(int rep) { 
  OBX retVal = getTyped("OBX", rep, OBX.class);
  return retVal;
}
ca.uhn.hl7v2.model.v24.groupBAR_P01_VISITgetTyped

Popular methods of BAR_P01_VISIT

  • add
  • getAllAsList
  • getReps
  • init

Popular in Java

  • Start an intent from android
  • findViewById (Activity)
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • JList (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • From CI to AI: The AI layer in your organization
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