Uses of Interface
com.github.m0nk3y2k4.thetvdb.api.model.data.Episode
-
Packages that use Episode Package Description com.github.m0nk3y2k4.thetvdb.api Defines the public sources of this APIcom.github.m0nk3y2k4.thetvdb.internal.api.impl Defines the internal implementation of the public APIcom.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data Defines the internal implementation of the public DTO's for the various remote routescom.github.m0nk3y2k4.thetvdb.internal.util.json Defines general functionality for processing JSON data -
-
Uses of Episode in com.github.m0nk3y2k4.thetvdb.api
Methods in com.github.m0nk3y2k4.thetvdb.api that return Episode Modifier and Type Method Description Episode
TheTVDBApi. getEpisode(long episodeId)
Returns the full information for a given episode id as mapped Java DTO.Methods in com.github.m0nk3y2k4.thetvdb.api that return types with arguments of type Episode Modifier and Type Method Description APIResponse<Episode>
TheTVDBApi.Extended. getEpisode(long episodeId)
Returns a response object containing the full information for a given episode id as mapped Java DTO.APIResponse<List<Episode>>
TheTVDBApi.Extended. getEpisodes(long seriesId, QueryParameters queryParameters)
Returns a response object containing all episodes of a specific series mapped as Java DTO.List<Episode>
TheTVDBApi. getEpisodes(long seriesId)
Returns the first 100 episodes of a specific series mapped as Java DTO.List<Episode>
TheTVDBApi. getEpisodes(long seriesId, long page)
Returns a list of episodes of a specific series mapped as Java DTO.List<Episode>
TheTVDBApi. getEpisodes(long seriesId, QueryParameters queryParameters)
Returns all episodes of a specific series mapped as Java DTO.APIResponse<List<Episode>>
TheTVDBApi.Extended. queryEpisodes(long seriesId, QueryParameters queryParameters)
Returns a response object containing all matching episodes of a specific series mapped as Java DTO.List<Episode>
TheTVDBApi. queryEpisodes(long seriesId, QueryParameters queryParameters)
Returns all matching episodes of a specific series mapped as Java DTO.List<Episode>
TheTVDBApi. queryEpisodesByAbsoluteNumber(long seriesId, long absoluteNumber)
Returns a specific episode of a series, mapped as Java DTO.List<Episode>
TheTVDBApi. queryEpisodesByAiredEpisode(long seriesId, long airedEpisode)
Returns all episodes of a specific series, matching theairedEpisode
parameter, mapped as Java DTO.List<Episode>
TheTVDBApi. queryEpisodesByAiredSeason(long seriesId, long airedSeason)
Returns all episodes of a specific series and season mapped as Java DTO.List<Episode>
TheTVDBApi. queryEpisodesByAiredSeason(long seriesId, long airedSeason, long page)
Returns all episodes of a specific series and season mapped as Java DTO. -
Uses of Episode in com.github.m0nk3y2k4.thetvdb.internal.api.impl
Methods in com.github.m0nk3y2k4.thetvdb.internal.api.impl that return Episode Modifier and Type Method Description Episode
TheTVDBApiImpl. getEpisode(long episodeId)
Methods in com.github.m0nk3y2k4.thetvdb.internal.api.impl that return types with arguments of type Episode Modifier and Type Method Description List<Episode>
TheTVDBApiImpl. getEpisodes(long seriesId)
List<Episode>
TheTVDBApiImpl. getEpisodes(long seriesId, long page)
List<Episode>
TheTVDBApiImpl. getEpisodes(long seriesId, QueryParameters queryParameters)
List<Episode>
TheTVDBApiImpl. queryEpisodes(long seriesId, QueryParameters queryParameters)
List<Episode>
TheTVDBApiImpl. queryEpisodesByAbsoluteNumber(long seriesId, long absoluteNumber)
List<Episode>
TheTVDBApiImpl. queryEpisodesByAiredEpisode(long seriesId, long airedEpisode)
List<Episode>
TheTVDBApiImpl. queryEpisodesByAiredSeason(long seriesId, long airedSeason)
List<Episode>
TheTVDBApiImpl. queryEpisodesByAiredSeason(long seriesId, long airedSeason, long page)
-
Uses of Episode in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data
Classes in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data that implement Episode Modifier and Type Class Description class
EpisodeDTO
DTO implementation of theEpisode
interface -
Uses of Episode in com.github.m0nk3y2k4.thetvdb.internal.util.json
Methods in com.github.m0nk3y2k4.thetvdb.internal.util.json that return types with arguments of type Episode Modifier and Type Method Description static APIResponse<Episode>
JsonDeserializer. mapEpisode(com.fasterxml.jackson.databind.JsonNode json)
Maps the actual episode data of a specific episode returned by the episodes route.static APIResponse<List<Episode>>
JsonDeserializer. mapEpisodes(com.fasterxml.jackson.databind.JsonNode json)
Maps the actual episode data returned by the various routes responsible for fetching and querying episodes.
-