class Vobject::Vcalendar::PropertyValue::Textlist

Public Class Methods

new(val) click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 444
def initialize(val)
  self.value = val
  self.type = "textlist"
end

Public Instance Methods

to_hash() click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 453
def to_hash
  value
end
to_s() click to toggle source
# File lib/vobject/vcalendar/propertyvalue.rb, line 449
def to_s
  value.map { |m| Text.escape m }.join(",")
end