Uses of Interface
com.github.m0nk3y2k4.thetvdb.api.model.data.Rating
-
Packages that use Rating 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 Rating in com.github.m0nk3y2k4.thetvdb.api
Methods in com.github.m0nk3y2k4.thetvdb.api that return types with arguments of type Rating Modifier and Type Method Description List<Rating>TheTVDBApi. addToRatings(String itemType, long itemId, long itemRating)Updates a given rating of a given type and returns the modified rating, mapped as Java DTO.APIResponse<List<Rating>>TheTVDBApi.Extended. addToRatings(String itemType, long itemId, long itemRating)Updates a given rating of a given type and return a response object containing the modified rating, mapped as Java DTO.APIResponse<List<Rating>>TheTVDBApi.Extended. getRatings()Returns a response object containing a list of ratings for the given user, mapped as Java DTO.List<Rating>TheTVDBApi. getRatings()Returns a list of ratings for the given user, mapped as Java DTO.APIResponse<List<Rating>>TheTVDBApi.Extended. queryRatings(QueryParameters queryParameters)Returns a response object containing a list of ratings for a given user that match the query, mapped as Java DTO.List<Rating>TheTVDBApi. queryRatings(QueryParameters queryParameters)Returns a list of ratings for a given user that match the query, mapped as Java DTO.List<Rating>TheTVDBApi. queryRatingsByItemType(String itemType)Returns a list of ratings for a given user that match theitemTypeparameter, mapped as Java DTO. -
Uses of Rating in com.github.m0nk3y2k4.thetvdb.internal.api.impl
Methods in com.github.m0nk3y2k4.thetvdb.internal.api.impl that return types with arguments of type Rating Modifier and Type Method Description List<Rating>TheTVDBApiImpl. addToRatings(String itemType, long itemId, long itemRating)List<Rating>TheTVDBApiImpl. getRatings()List<Rating>TheTVDBApiImpl. queryRatings(QueryParameters queryParameters)List<Rating>TheTVDBApiImpl. queryRatingsByItemType(String itemType) -
Uses of Rating in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data
Classes in com.github.m0nk3y2k4.thetvdb.internal.api.impl.model.data that implement Rating Modifier and Type Class Description classRatingDTODTO implementation of theRatinginterface -
Uses of Rating in com.github.m0nk3y2k4.thetvdb.internal.util.json
Methods in com.github.m0nk3y2k4.thetvdb.internal.util.json that return types with arguments of type Rating Modifier and Type Method Description static APIResponse<List<Rating>>JsonDeserializer. mapRatings(com.fasterxml.jackson.databind.JsonNode json)Maps the actual ratings returned by the various routes responsible for adding, querying and fetching user ratings.
-