Class: TagLib::MP4::Item
- Inherits:
-
Object
- Object
- TagLib::MP4::Item
- Defined in:
- docs/taglib/mp4.rb
Overview
TagLib's MP4::Item class is a C++ union. To create a new Item with a value
of the right type, use one of the Item.from_<type>-constructors. The use
of Item.new is discouraged. For more information, see the TagLib
documentation of Item.
Class Method Summary collapse
- .from_bool(value) ⇒ TagLib::MP4::Item
- .from_int(number) ⇒ TagLib::MP4::Item
- .from_int_pair(integer_pair) ⇒ TagLib::MP4::Item
- .from_string_list(string_array) ⇒ TagLib::MP4::Item
Instance Method Summary collapse
- #to_bool ⇒ Boolean
- #to_cover_art_list ⇒ Array<TagLib::MP4::CoverArt>
- #to_int ⇒ Fixnum
- #to_int_pair ⇒ Array<Fixnum, Fixnum>
- #to_string_list ⇒ Array<String>
- #valid? ⇒ Boolean
Class Method Details
.from_bool(value) ⇒ TagLib::MP4::Item
109 110 |
# File 'docs/taglib/mp4.rb', line 109 def self.from_bool(value) end |
.from_int(number) ⇒ TagLib::MP4::Item
114 115 |
# File 'docs/taglib/mp4.rb', line 114 def self.from_int(number) end |
.from_int_pair(integer_pair) ⇒ TagLib::MP4::Item
121 122 |
# File 'docs/taglib/mp4.rb', line 121 def self.from_int_pair(integer_pair) end |
.from_string_list(string_array) ⇒ TagLib::MP4::Item
126 127 |
# File 'docs/taglib/mp4.rb', line 126 def self.from_string_list(string_array) end |
Instance Method Details
#to_bool ⇒ Boolean
130 131 |
# File 'docs/taglib/mp4.rb', line 130 def to_bool end |
#to_cover_art_list ⇒ Array<TagLib::MP4::CoverArt>
134 135 |
# File 'docs/taglib/mp4.rb', line 134 def to_cover_art_list end |
#to_int ⇒ Fixnum
138 139 |
# File 'docs/taglib/mp4.rb', line 138 def to_int end |
#to_int_pair ⇒ Array<Fixnum, Fixnum>
142 143 |
# File 'docs/taglib/mp4.rb', line 142 def to_int_pair end |
#to_string_list ⇒ Array<String>
146 147 |
# File 'docs/taglib/mp4.rb', line 146 def to_string_list end |
#valid? ⇒ Boolean
150 151 |
# File 'docs/taglib/mp4.rb', line 150 def valid? end |