Class: EnergyPlus::DictionaryEntry
- Inherits:
-
Object
- Object
- EnergyPlus::DictionaryEntry
- Defined in:
- lib/energyplus/EsoFile.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#interval ⇒ Object
readonly
Returns the value of attribute interval.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#units ⇒ Object
readonly
Returns the value of attribute units.
-
#var_name ⇒ Object
readonly
Returns the value of attribute var_name.
Instance Method Summary collapse
-
#initialize(id, key, var_name, units, interval) ⇒ DictionaryEntry
constructor
A new instance of DictionaryEntry.
Constructor Details
#initialize(id, key, var_name, units, interval) ⇒ DictionaryEntry
Returns a new instance of DictionaryEntry.
24 25 26 |
# File 'lib/energyplus/EsoFile.rb', line 24 def initialize(id,key,var_name,units,interval) @id,@key,@var_name,@units,@interval = id,key,var_name,units,interval end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
23 24 25 |
# File 'lib/energyplus/EsoFile.rb', line 23 def id @id end |
#interval ⇒ Object (readonly)
Returns the value of attribute interval.
23 24 25 |
# File 'lib/energyplus/EsoFile.rb', line 23 def interval @interval end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
23 24 25 |
# File 'lib/energyplus/EsoFile.rb', line 23 def key @key end |
#units ⇒ Object (readonly)
Returns the value of attribute units.
23 24 25 |
# File 'lib/energyplus/EsoFile.rb', line 23 def units @units end |
#var_name ⇒ Object (readonly)
Returns the value of attribute var_name.
23 24 25 |
# File 'lib/energyplus/EsoFile.rb', line 23 def var_name @var_name end |