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

How to use
BPS_O29_TIMING
in
ca.uhn.hl7v2.model.v26.group

Best Java code snippets using ca.uhn.hl7v2.model.v26.group.BPS_O29_TIMING (Showing top 14 results out of 315)

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

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

/** 
 * Returns the number of existing repetitions of TQ2 
 */ 
public int getTQ2Reps() {  
  return getReps("TQ2");
} 
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns
 * TQ1 (Timing/Quantity) - creates it if necessary
 */
public TQ1 getTQ1() { 
  TQ1 retVal = getTyped("TQ1", TQ1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v26

/** 
 * Creates a new BPS_O29_TIMING group
 */
public BPS_O29_TIMING(Group parent, ModelClassFactory factory) {
  super(parent, factory);
  init(factory);
}
origin: ca.uhn.hapi/hapi-structures-v26

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

/** 
 * Creates a new BPS_O29_TIMING group
 */
public BPS_O29_TIMING(Group parent, ModelClassFactory factory) {
  super(parent, factory);
  init(factory);
}
origin: ca.uhn.hapi/hapi-osgi-base

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

/**
 * Returns
 * the first repetition of 
 * TQ2 (Timing/Quantity Relationship) - creates it if necessary
 */
public TQ2 getTQ2() { 
  TQ2 retVal = getTyped("TQ2", TQ2.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v26

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

/** 
 * Returns the number of existing repetitions of TQ2 
 */ 
public int getTQ2Reps() {  
  return getReps("TQ2");
} 
origin: ca.uhn.hapi/hapi-structures-v26

/**
 * Returns
 * TQ1 (Timing/Quantity) - creates it if necessary
 */
public TQ1 getTQ1() { 
  TQ1 retVal = getTyped("TQ1", TQ1.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v26

/**
 * Returns
 * the first repetition of 
 * TQ2 (Timing/Quantity Relationship) - creates it if necessary
 */
public TQ2 getTQ2() { 
  TQ2 retVal = getTyped("TQ2", TQ2.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-structures-v26

/**
 * Returns a specific repetition of
 * TQ2 (Timing/Quantity Relationship) - 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 TQ2 getTQ2(int rep) { 
  TQ2 retVal = getTyped("TQ2", rep, TQ2.class);
  return retVal;
}
origin: ca.uhn.hapi/hapi-osgi-base

/**
 * Returns a specific repetition of
 * TQ2 (Timing/Quantity Relationship) - 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 TQ2 getTQ2(int rep) { 
  TQ2 retVal = getTyped("TQ2", rep, TQ2.class);
  return retVal;
}
ca.uhn.hl7v2.model.v26.groupBPS_O29_TIMING

Javadoc

Represents a BPS_O29_TIMING group structure (a Group object). A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. This Group contains the following elements:

  • 1: TQ1 (Timing/Quantity)
  • 2: TQ2 (Timing/Quantity Relationship) optional repeating

Most used methods

  • add
  • getAllAsList
  • getReps
  • getTyped
  • init

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (Timer)
  • putExtra (Intent)
  • getContentResolver (Context)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top 12 Jupyter Notebook extensions
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