enum

Tmdb::Find::ExternalSource

Inherits Enum < Comparable < Value < Object

Constants

Imdb = 0
Tvdb = 1
Facebook = 2
Instagram = 3
Twitter = 4

Instance methods

facebook?

Returns true if this enum value equals Facebook

Source
imdb?

Returns true if this enum value equals Imdb

Source
instagram?

Returns true if this enum value equals Instagram

Source
to_s

Returns a String representation of this enum member. In the case of regular enums, this is just the name of the member. In the case of flag enums, it's the names joined by vertical bars, or "None", if the value is zero.

If an enum's value doesn't match a member's value, the raw value is returned as a string.

Color::Red.to_s                     # => "Red"
IOMode::None.to_s                   # => "None"
(IOMode::Read | IOMode::Write).to_s # => "Read | Write"

Color.new(10).to_s # => "10"
Source
tvdb?

Returns true if this enum value equals Tvdb

Source
twitter?

Returns true if this enum value equals Twitter

Source