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

How to use
PPG_PCJ
in
ca.uhn.hl7v2.model.v23.message

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

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

/** 
 * <p>
 * Returns a non-modifiable List containing all current existing repetitions of PATHWAY.
 * <p>
 * <p>
 * Note that unlike {@link #getPATHWAY()}, this method will not create any reps
 * if none are already present, so an empty list may be returned.
 * </p>
 * 
 */ 
public java.util.List<PPG_PCJ_PATHWAY> getPATHWAYAll() throws HL7Exception {
  return getAllAsList("PATHWAY", PPG_PCJ_PATHWAY.class);
} 
origin: ca.uhn.hapi/hapi-structures-v23

/** 
 * <p>
 * Returns the number of existing repetitions of PATHWAY 
 * </p>
 * 
 */ 
public int getPATHWAYReps() { 
  return getReps("PATHWAY");
} 
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * <p>
 * Returns
 * PID (Patient Identification) - creates it if necessary
 * </p>
 * 
 *
 */
public PID getPID() { 
  return getTyped("PID", PID.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

private void init(ModelClassFactory factory) {
  try {
           this.add(MSH.class, true, false);
             this.add(PID.class, true, false);
             this.add(PPG_PCJ_PATIENT_VISIT.class, false, false);
             this.add(PPG_PCJ_PATHWAY.class, true, true);
    } catch(HL7Exception e) {
   log.error("Unexpected error creating PPG_PCJ - this is probably a bug in the source code generator.", e);
  }
}
origin: ca.uhn.hapi/hapi-structures-v23

/** 
 * Creates a new PPG_PCJ message with custom ModelClassFactory.
 */
public PPG_PCJ(ModelClassFactory factory) {
  super(factory);
  init(factory);
}
origin: ca.uhn.hapi/hapi-structures-v23

private void init(ModelClassFactory factory) {
  try {
           this.add(MSH.class, true, false);
             this.add(PID.class, true, false);
             this.add(PPG_PCJ_PATIENT_VISIT.class, false, false);
             this.add(PPG_PCJ_PATHWAY.class, true, true);
    } catch(HL7Exception e) {
   log.error("Unexpected error creating PPG_PCJ - this is probably a bug in the source code generator.", e);
  }
}
origin: ca.uhn.hapi/hapi-osgi-base

/** 
 * Creates a new PPG_PCJ message with custom ModelClassFactory.
 */
public PPG_PCJ(ModelClassFactory factory) {
  super(factory);
  init(factory);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * <p>
 * Returns
 * the first repetition of 
 * PATHWAY (a Group object) - creates it if necessary
 * </p>
 * 
 *
 */
public PPG_PCJ_PATHWAY getPATHWAY() { 
  return getTyped("PATHWAY", PPG_PCJ_PATHWAY.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/** 
 * <p>
 * Returns a non-modifiable List containing all current existing repetitions of PATHWAY.
 * <p>
 * <p>
 * Note that unlike {@link #getPATHWAY()}, this method will not create any reps
 * if none are already present, so an empty list may be returned.
 * </p>
 * 
 */ 
public java.util.List<PPG_PCJ_PATHWAY> getPATHWAYAll() throws HL7Exception {
  return getAllAsList("PATHWAY", PPG_PCJ_PATHWAY.class);
} 
origin: ca.uhn.hapi/hapi-osgi-base

/** 
 * <p>
 * Returns the number of existing repetitions of PATHWAY 
 * </p>
 * 
 */ 
public int getPATHWAYReps() { 
  return getReps("PATHWAY");
} 
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * <p>
 * Returns
 * PATIENT_VISIT (a Group object) - creates it if necessary
 * </p>
 * 
 *
 */
public PPG_PCJ_PATIENT_VISIT getPATIENT_VISIT() { 
  return getTyped("PATIENT_VISIT", PPG_PCJ_PATIENT_VISIT.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * <p>
 * Returns
 * the first repetition of 
 * PATHWAY (a Group object) - creates it if necessary
 * </p>
 * 
 *
 */
public PPG_PCJ_PATHWAY getPATHWAY() { 
  return getTyped("PATHWAY", PPG_PCJ_PATHWAY.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * <p>
 * Returns
 * PID (Patient Identification) - creates it if necessary
 * </p>
 * 
 *
 */
public PID getPID() { 
  return getTyped("PID", PID.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * <p>
 * Returns
 * MSH (Message header segment) - creates it if necessary
 * </p>
 * 
 *
 */
public MSH getMSH() { 
  return getTyped("MSH", MSH.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * <p>
 * Returns
 * PATIENT_VISIT (a Group object) - creates it if necessary
 * </p>
 * 
 *
 */
public PPG_PCJ_PATIENT_VISIT getPATIENT_VISIT() { 
  return getTyped("PATIENT_VISIT", PPG_PCJ_PATIENT_VISIT.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * <p>
 * Returns
 * MSH (Message header segment) - creates it if necessary
 * </p>
 * 
 *
 */
public MSH getMSH() { 
  return getTyped("MSH", MSH.class);
}
origin: ca.uhn.hapi/hapi-structures-v23

/**
 * <p>
 * Returns a specific repetition of
 * PATHWAY (a Group object) - creates it if necessary
 * </p>
 * 
 *
 * @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 PPG_PCJ_PATHWAY getPATHWAY(int rep) { 
  return getTyped("PATHWAY", rep, PPG_PCJ_PATHWAY.class);
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * <p>
 * Returns a specific repetition of
 * PATHWAY (a Group object) - creates it if necessary
 * </p>
 * 
 *
 * @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 PPG_PCJ_PATHWAY getPATHWAY(int rep) { 
  return getTyped("PATHWAY", rep, PPG_PCJ_PATHWAY.class);
}
ca.uhn.hl7v2.model.v23.messagePPG_PCJ

Javadoc

Represents a PPG_PCJ message structure (see chapter ?). This structure contains the following elements:

  • 1: MSH (Message header segment)
  • 2: PID (Patient Identification)
  • 3: PPG_PCJ_PATIENT_VISIT (a Group object) optional
  • 4: PPG_PCJ_PATHWAY (a Group object) repeating

Most used methods

  • add
  • getAllAsList
  • getReps
  • getTyped
  • init

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onCreateOptionsMenu (Activity)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Github Copilot alternatives
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