Uses of Interface
com.github.m0nk3y2k4.thetvdb.api.model.data.SeriesSearchResult
-
Packages that use SeriesSearchResult Package Description com.github.m0nk3y2k4.thetvdb.api Defines the public sources of this APIcom.github.m0nk3y2k4.thetvdb.api.model.data Defines the public DTO's for the various remote routescom.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 SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.api
Methods in com.github.m0nk3y2k4.thetvdb.api that return types with arguments of type SeriesSearchResult Modifier and Type Method Description APIResponse<List<SeriesSearchResult>>
TheTVDBApi.Extended. searchSeries(QueryParameters queryParameters)
Returns a response object containing a list of series search results based on the given query parameters mapped as Java DTO.List<SeriesSearchResult>
TheTVDBApi. searchSeries(QueryParameters queryParameters)
Returns a list of series search results based on the given query parameters mapped as Java DTO.List<SeriesSearchResult>
TheTVDBApi. searchSeriesByImdbId(String imdbId)
Search for series by IMDB-Id.List<SeriesSearchResult>
TheTVDBApi. searchSeriesByName(String name)
Search for series by name.List<SeriesSearchResult>
TheTVDBApi. searchSeriesByZap2itId(String zap2itId)
Search for series by Zap2it-Id. -
Uses of SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.api.model.data
Subinterfaces of SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.api.model.data Modifier and Type Interface Description interface
Series
Interface representing a Series data transfer object. -
Uses of SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.internal.api.impl
Methods in com.github.m0nk3y2k4.thetvdb.internal.api.impl that return types with arguments of type SeriesSearchResult Modifier and Type Method Description List<SeriesSearchResult>
TheTVDBApiImpl. searchSeries(QueryParameters queryParameters)
List<SeriesSearchResult>
TheTVDBApiImpl. searchSeriesByImdbId(String imdbId)
List<SeriesSearchResult>
TheTVDBApiImpl. searchSeriesByName(String name)
List<SeriesSearchResult>
TheTVDBApiImpl. searchSeriesByZap2itId(String zap2itId)
-
Uses of SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data
Classes in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data that implement SeriesSearchResult Modifier and Type Class Description class
SeriesDTO
DTO implementation of theSeries
interfaceclass
SeriesSearchResultDTO
DTO implementation of theSeriesSearchResult
interface -
Uses of SeriesSearchResult in com.github.m0nk3y2k4.thetvdb.internal.util.json
Methods in com.github.m0nk3y2k4.thetvdb.internal.util.json that return types with arguments of type SeriesSearchResult Modifier and Type Method Description static APIResponse<List<SeriesSearchResult>>
JsonDeserializer. mapSeriesSearchResult(com.fasterxml.jackson.databind.JsonNode json)
Maps the actual search results returned by the series search route.
-