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_byte(value) ⇒ TagLib::MP4::Item
- .from_byte_vector_list(list) ⇒ TagLib::MP4::Item
- .from_int(number) ⇒ TagLib::MP4::Item
- .from_int_pair(integer_pair) ⇒ TagLib::MP4::Item
- .from_long_long(number) ⇒ TagLib::MP4::Item
- .from_string_list(string_array) ⇒ TagLib::MP4::Item
- .from_uint(value) ⇒ TagLib::MP4::Item
Instance Method Summary collapse
- #to_bool ⇒ Boolean
- #to_byte ⇒ Fixnum
- #to_byte_vector_list ⇒ TagLib::ByteVectorList
- #to_cover_art_list ⇒ Array<TagLib::MP4::CoverArt>
- #to_int ⇒ Fixnum
- #to_int_pair ⇒ Array<Fixnum, Fixnum>
- #to_long_long ⇒ Fixnum
- #to_string_list ⇒ Array<String>
- #to_uint ⇒ Fixnum
- #valid? ⇒ Boolean
Class Method Details
.from_bool(value) ⇒ TagLib::MP4::Item
143 144 |
# File 'docs/taglib/mp4.rb', line 143 def self.from_bool(value) end |
.from_byte(value) ⇒ TagLib::MP4::Item
150 151 |
# File 'docs/taglib/mp4.rb', line 150 def self.from_byte(value) end |
.from_byte_vector_list(list) ⇒ TagLib::MP4::Item
188 189 |
# File 'docs/taglib/mp4.rb', line 188 def self.from_byte_vector_list(list) end |
.from_int(number) ⇒ TagLib::MP4::Item
162 163 |
# File 'docs/taglib/mp4.rb', line 162 def self.from_int(number) end |
.from_int_pair(integer_pair) ⇒ TagLib::MP4::Item
176 177 |
# File 'docs/taglib/mp4.rb', line 176 def self.from_int_pair(integer_pair) end |
.from_long_long(number) ⇒ TagLib::MP4::Item
169 170 |
# File 'docs/taglib/mp4.rb', line 169 def self.from_long_long(number) end |
.from_string_list(string_array) ⇒ TagLib::MP4::Item
181 182 |
# File 'docs/taglib/mp4.rb', line 181 def self.from_string_list(string_array) end |
.from_uint(value) ⇒ TagLib::MP4::Item
157 158 |
# File 'docs/taglib/mp4.rb', line 157 def self.from_uint(value) end |
Instance Method Details
#to_bool ⇒ Boolean
192 193 |
# File 'docs/taglib/mp4.rb', line 192 def to_bool end |
#to_byte ⇒ Fixnum
198 199 |
# File 'docs/taglib/mp4.rb', line 198 def to_byte end |
#to_byte_vector_list ⇒ TagLib::ByteVectorList
232 233 |
# File 'docs/taglib/mp4.rb', line 232 def to_byte_vector_list end |
#to_cover_art_list ⇒ Array<TagLib::MP4::CoverArt>
218 219 |
# File 'docs/taglib/mp4.rb', line 218 def to_cover_art_list end |
#to_int ⇒ Fixnum
208 209 |
# File 'docs/taglib/mp4.rb', line 208 def to_int end |
#to_int_pair ⇒ Array<Fixnum, Fixnum>
222 223 |
# File 'docs/taglib/mp4.rb', line 222 def to_int_pair end |
#to_long_long ⇒ Fixnum
214 215 |
# File 'docs/taglib/mp4.rb', line 214 def to_long_long end |
#to_string_list ⇒ Array<String>
226 227 |
# File 'docs/taglib/mp4.rb', line 226 def to_string_list end |
#to_uint ⇒ Fixnum
204 205 |
# File 'docs/taglib/mp4.rb', line 204 def to_uint end |
#valid? ⇒ Boolean
236 237 |
# File 'docs/taglib/mp4.rb', line 236 def valid? end |