class CFPropertyList::CFUid

Public Instance Methods

to_binary(bplist) click to toggle source

convert to binary

# File lib/cfpropertylist/rbCFTypes.rb, line 338
def to_binary(bplist)
  bplist.uid_to_binary(@value)
end
to_plain(plist) click to toggle source
# File lib/cfpropertylist/rbCFTypes.rb, line 342
def to_plain(plist)
  CFDictionary.new({'CF$UID' => CFInteger.new(@value)}).to_plain(plist)
end
to_xml(parser) click to toggle source
# File lib/cfpropertylist/rbCFTypes.rb, line 333
def to_xml(parser)
  CFDictionary.new({'CF$UID' => CFInteger.new(@value)}).to_xml(parser)
end