class Vobject::Vcalendar::PropertyValue::Datelist
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 479 def initialize(val) self.value = val self.type = "datelist" end
Public Instance Methods
to_hash()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 488 def to_hash value.map(&:to_hash) end
to_s()
click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 484 def to_s value.map(&:to_s).join(",") end