Class: Stupidedi::Schema::AbstractDef
- Inherits:
-
Object
- Object
- Stupidedi::Schema::AbstractDef
- Defined in:
- lib/stupidedi/schema/abstract_def.rb
Direct Known Subclasses
AbstractElementDef, FunctionalGroupDef, InterchangeDef, LoopDef, SegmentDef, TableDef, TransactionSetDef
Instance Method Summary (collapse)
-
- (Boolean) component?
Is this a component SimpleElementDef?.
-
- (Boolean) composite?
Is this a CompositeElementDef?.
- - (Boolean) definition?
-
- (Boolean) element?
Is this a AbstractElementDef?.
-
- (Boolean) functional_group?
Is this an FunctionalGroupDef?.
-
- (Boolean) interchange?
Is this an InterchangeDef?.
-
- (Boolean) loop?
Is this a LoopDef?.
-
- (Boolean) repeated?
Is this a repeated AbstractElementDef?.
-
- (Boolean) segment?
Is this a SegmentDef?.
-
- (Boolean) simple?
Is this a non-component SimpleElementDef?.
-
- (Boolean) table?
Is this a TableDef?.
-
- (Boolean) transaction_set?
Is this an TransactionSetDef?.
- - (Boolean) usage?
Instance Method Details
- (Boolean) component?
Is this a component SimpleElementDef?
58 59 60 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 58 def component? false end |
- (Boolean) composite?
Is this a CompositeElementDef?
53 54 55 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 53 def composite? false end |
- (Boolean) definition?
10 11 12 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 10 def definition? true end |
- (Boolean) element?
Is this a Stupidedi::Schema::AbstractElementDef?
48 49 50 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 48 def element? false end |
- (Boolean) functional_group?
Is this an FunctionalGroupDef?
23 24 25 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 23 def functional_group? false end |
- (Boolean) interchange?
Is this an InterchangeDef?
18 19 20 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 18 def interchange? false end |
- (Boolean) loop?
Is this a LoopDef?
38 39 40 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 38 def loop? false end |
- (Boolean) repeated?
Is this a repeated Stupidedi::Schema::AbstractElementDef?
63 64 65 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 63 def repeated? false end |
- (Boolean) segment?
Is this a SegmentDef?
43 44 45 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 43 def segment? false end |
- (Boolean) simple?
Is this a non-component SimpleElementDef?
68 69 70 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 68 def simple? false end |
- (Boolean) table?
Is this a TableDef?
33 34 35 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 33 def table? false end |
- (Boolean) transaction_set?
Is this an TransactionSetDef?
28 29 30 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 28 def transaction_set? false end |
- (Boolean) usage?
6 7 8 |
# File 'lib/stupidedi/schema/abstract_def.rb', line 6 def usage? false end |