Class: EnergyPlus::DictionaryEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/energyplus/EsoFile.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#idObject (readonly)

Returns the value of attribute id.



23
24
25
# File 'lib/energyplus/EsoFile.rb', line 23

def id
  @id
end

#intervalObject (readonly)

Returns the value of attribute interval.



23
24
25
# File 'lib/energyplus/EsoFile.rb', line 23

def interval
  @interval
end

#keyObject (readonly)

Returns the value of attribute key.



23
24
25
# File 'lib/energyplus/EsoFile.rb', line 23

def key
  @key
end

#unitsObject (readonly)

Returns the value of attribute units.



23
24
25
# File 'lib/energyplus/EsoFile.rb', line 23

def units
  @units
end

#var_nameObject (readonly)

Returns the value of attribute var_name.



23
24
25
# File 'lib/energyplus/EsoFile.rb', line 23

def var_name
  @var_name
end