You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param queryParameters Object containing key/value pairs of query parameters. For a complete list of possible search parameters
@@ -265,7 +265,7 @@ public interface TheTVDBApi {
265
265
* <p/>
266
266
* <i>Corresponds to remote API route:</i> <a href="https://api.thetvdb.com/swagger#!/Series/get_series_id_episodes_query">/series/{id}/episodes/query</a>
* @param queryParameters Object containing key/value pairs of query parameters. For a complete list of possible search parameters
@@ -279,7 +279,7 @@ public interface TheTVDBApi {
279
279
280
280
/**
281
281
* Returns all episodes of a specific series and season mapped as Java objects. Results will be paginated. Note that this method
282
-
* is deterministic and will always return the <b>first</b> result page of the available episodes. This is a shortcut-method for {@link TheTVDBApiJSON#queryEpisodes(long, QueryParameters)}
282
+
* is deterministic and will always return the <b>first</b> result page of the available episodes. This is a shortcut-method for {@link JSON#queryEpisodes(long, QueryParameters)}
* Returns all episodes of a specific series and season mapped as Java objects. Results will be paginated. For seasons with
298
-
* a high number of episodes use the <code>page</code> parameter to browse to a specific result page. This is a shortcut-method for {@link TheTVDBApiJSON#queryEpisodes(long, QueryParameters)}
298
+
* a high number of episodes use the <code>page</code> parameter to browse to a specific result page. This is a shortcut-method for {@link JSON#queryEpisodes(long, QueryParameters)}
299
299
* with a "airedSeason" and "page" query parameter.
* Returns all episodes of a specific series, matching the <code>airedEpisode</code> parameter, mapped as Java objects. Results will be paginated.
315
-
* This is a shortcut-method for {@link TheTVDBApiJSON#queryEpisodes(long, QueryParameters)} with a single "airedEpisode" query parameter.
315
+
* This is a shortcut-method for {@link JSON#queryEpisodes(long, QueryParameters)} with a single "airedEpisode" query parameter.
316
316
* <p/>
317
317
* Note that an aired episode number might be associated with a specific season. If the series consists of more than one season this method will return the matching aired episodes
318
318
* from all the seasons. Use {@link #queryEpisodesByAbsoluteNumber(long, long)} in order to query for a single episode.
@@ -330,7 +330,7 @@ public interface TheTVDBApi {
330
330
331
331
/**
332
332
* Returns a specific episode of a series, mapped as Java object. Results will be paginated.
333
-
* This is a shortcut-method for {@link TheTVDBApiJSON#queryEpisodes(long, QueryParameters)} with a single "absoluteNumber" query parameter.
333
+
* This is a shortcut-method for {@link JSON#queryEpisodes(long, QueryParameters)} with a single "absoluteNumber" query parameter.
334
334
* <p/>
335
335
* Note that (unlike an aired episode number) an absolute episode number should most likely be unique throughout all episodes of a specific series. So in most cases the returned
336
336
* list will consist of only one element. However, as the remote API doesn't give any guarantees that querying with an "absoluteNumber" parameter always returns one episode record
0 commit comments