Class EncodingCharacters

java.lang.Object
ca.uhn.hl7v2.parser.EncodingCharacters
All Implemented Interfaces:
Cloneable

public class EncodingCharacters extends Object implements Cloneable
Represents the set of special characters used to encode traditionally encoded HL7 messages.
Author:
Bryan Tripp (bryan_tripp@sourceforge.net)
  • Constructor Details

    • EncodingCharacters

      public EncodingCharacters(char fieldSeparator, String encodingCharacters)
      Creates new EncodingCharacters object with the given character values. If the encodingCharacters argument is null, the default values are used.
      Parameters:
      fieldSeparator - field seperator
      encodingCharacters - consists of the characters that appear in MSH-2 (see section 2.8 of the HL7 spec). The characters are Component Separator, Repetition Separator, Escape Character, Subcomponent Separator, and, as of v2.7, the Truncation Character (in that order).
    • EncodingCharacters

      public EncodingCharacters(char fieldSeparator, char componentSeparator, char repetitionSeparator, char escapeCharacter, char subcomponentSeparator)
    • EncodingCharacters

      public EncodingCharacters(char fieldSeparator, char componentSeparator, char repetitionSeparator, char escapeCharacter, char subcomponentSeparator, char truncationCharacter)
    • EncodingCharacters

      copies contents of "other"
  • Method Details