Enum MediaType

java.lang.Object
java.lang.Enum<MediaType>
com.amilesend.tmdb.client.model.search.type.MediaType
All Implemented Interfaces:
Serializable, Comparable<MediaType>

public enum MediaType extends Enum<MediaType>
Defines the possible media types for trending resources.
  • Enum Constant Details

    • MOVIE

      public static final MediaType MOVIE
    • PERSON

      public static final MediaType PERSON
    • TV

      public static final MediaType TV
    • TV_SEASON

      public static final MediaType TV_SEASON
    • TV_EPISODE

      public static final MediaType TV_EPISODE
  • Field Details

  • Method Details

    • values

      public static MediaType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MediaType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromValue

      public static MediaType fromValue(String value)
      Returns the associated MediaType for the given value.
      Parameters:
      value - the value
      Returns:
      the media type reference
    • parseMediaTypeFromJson

      public static MediaType parseMediaTypeFromJson(com.google.gson.JsonElement rootElement)
      Helper method to parse the media_type attributes from a JsonElement.
      Parameters:
      rootElement - the JSON object element
      Returns:
      the media type reference
    • toString

      public String toString()
      Overrides:
      toString in class Enum<MediaType>
    • getValue

      public String getValue()
      The media type value.