Interface ImageSummary
-
- All Known Implementing Classes:
ImageSummaryDTO
public interface ImageSummary
Interface representing an Image summary data transfer object.
The methods of this class provide easy access to all image summary related data which was returned by the remote service in JSON format. Please note that, as the remote service declares all of the properties to be optional, most of the methods are marked asNullable
. Methods returning collection-based values however will return an empty collection in case no corresponding data was received.
The sole purpose of these DTO objects is to encapsulate the exact raw JSON data as received from the remote service in order to facilitate API integration by working with simple Java POJO's instead of nested JSON nodes. Although there will be no intense post-processing of the actual JSON values a type-casting may be applied to some of them to improve the usability and relieve the API user of this task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getFanartCount()
Get the value of the {data.fanart
} JSON propertyLong
getPosterCount()
Get the value of the {data.poster
} JSON propertyLong
getSeasonCount()
Get the value of the {data.season
} JSON propertyLong
getSeasonwideCount()
Get the value of the {data.seasonwide
} JSON propertyLong
getSeriesCount()
Get the value of the {data.series
} JSON property
-
-
-
Method Detail
-
getFanartCount
@Nullable Long getFanartCount()
Get the value of the {data.fanart
} JSON property- Returns:
- The
fanart
property from the received JSON
-
getPosterCount
@Nullable Long getPosterCount()
Get the value of the {data.poster
} JSON property- Returns:
- The
poster
property from the received JSON
-
getSeasonCount
@Nullable Long getSeasonCount()
Get the value of the {data.season
} JSON property- Returns:
- The
season
property from the received JSON
-
getSeasonwideCount
@Nullable Long getSeasonwideCount()
Get the value of the {data.seasonwide
} JSON property- Returns:
- The
seasonwide
property from the received JSON
-
-