Class X12::Empty
In: lib/X12/Empty.rb
Parent: Base

$Id: Empty.rb 35 2008-11-13 18:33:44Z ikk $

Class indicating the absense of any X12 element, be it loop, segment, or anything else like that.

Methods

new   to_s  

Public Class methods

Create a new empty

[Source]

    # File lib/X12/Empty.rb, line 33
33:     def initialize
34:       super(nil, [])
35:     end

Public Instance methods

Returns an empty string

[Source]

    # File lib/X12/Empty.rb, line 38
38:     def to_s
39:       ''
40:     end