class Vobject::Vcalendar::PropertyValue::Geovalue
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 409 def initialize(val) self.value = val self.type = "geovalue" end
Public Instance Methods
to_hash()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 419 def to_hash value end
to_s()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 414 def to_s ret = "#{value[:lat]};#{value[:long]}" ret end