Class: FCSParse::FCSParam
- Inherits:
-
Object
- Object
- FCSParse::FCSParam
- Defined in:
- lib/fcsparse/fcsevent.rb
Overview
Class representing a single parameter and its value in a single event.
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#limit ⇒ Object
Returns the value of attribute limit.
-
#name ⇒ Object
Returns the value of attribute name.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name, description, value, limit) ⇒ FCSParam
constructor
Create a new parameter with specified information.
Constructor Details
permalink #initialize(name, description, value, limit) ⇒ FCSParam
Create a new parameter with specified information
49 50 51 52 53 54 55 56 |
# File 'lib/fcsparse/fcsevent.rb', line 49 def initialize(name, description, value, limit) @name = name @description = description @value = value @limit = limit end |
Instance Attribute Details
permalink #description ⇒ Object
Returns the value of attribute description.
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def description @description end |
permalink #limit ⇒ Object
Returns the value of attribute limit.
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def limit @limit end |
permalink #name ⇒ Object
Returns the value of attribute name.
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def name @name end |
permalink #value ⇒ Object
Returns the value of attribute value.
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def value @value end |