Uses of Interface
com.github.m0nk3y2k4.thetvdb.api.model.data.Series
-
Packages that use Series 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 Series in com.github.m0nk3y2k4.thetvdb.api
Methods in com.github.m0nk3y2k4.thetvdb.api that return Series Modifier and Type Method Description Series
TheTVDBApi. filterSeries(long seriesId, QueryParameters queryParameters)
Returns a filtered series record based on the given parameters, mapped as Java DTO.Series
TheTVDBApi. filterSeries(long seriesId, String filterKeys)
Returns a series records, filtered by the supplied comma-separated list of keys, mapped as Java DTO.Series
TheTVDBApi. getSeries(long seriesId)
Returns detailed information for a specific series mapped as Java DTO.Methods in com.github.m0nk3y2k4.thetvdb.api that return types with arguments of type Series Modifier and Type Method Description APIResponse<Series>
TheTVDBApi.Extended. filterSeries(long seriesId, QueryParameters queryParameters)
Returns a response object containing a filtered series record based on the given parameters, mapped as Java DTO.APIResponse<Series>
TheTVDBApi.Extended. getSeries(long seriesId)
Returns a response object containing detailed information for a specific series mapped as Java DTO. -
Uses of Series in com.github.m0nk3y2k4.thetvdb.internal.api.impl
Methods in com.github.m0nk3y2k4.thetvdb.internal.api.impl that return Series Modifier and Type Method Description Series
TheTVDBApiImpl. filterSeries(long seriesId, QueryParameters queryParameters)
Series
TheTVDBApiImpl. filterSeries(long seriesId, String filterKeys)
Series
TheTVDBApiImpl. getSeries(long seriesId)
-
Uses of Series in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data
Classes in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data that implement Series Modifier and Type Class Description class
SeriesDTO
DTO implementation of theSeries
interface -
Uses of Series in com.github.m0nk3y2k4.thetvdb.internal.util.json
Methods in com.github.m0nk3y2k4.thetvdb.internal.util.json that return types with arguments of type Series Modifier and Type Method Description static APIResponse<Series>
JsonDeserializer. mapSeries(com.fasterxml.jackson.databind.JsonNode json)
Maps the actual series data returned by the various routes responsible for fetching or filtering series.
-