Class Image
- java.lang.Object
-
- com.wrapper.spotify.model_objects.AbstractModelObject
-
- com.wrapper.spotify.model_objects.specification.Image
-
- All Implemented Interfaces:
IModelObject
public class Image extends AbstractModelObject
Retrieve information about Image objects by building instances from this class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImage.BuilderBuilder class for buildingImageinstances.static classImage.JsonUtilJsonUtil class for buildingImageinstances.-
Nested classes/interfaces inherited from interface com.wrapper.spotify.model_objects.IModelObject
IModelObject.IJsonUtil<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Image.Builderbuilder()Create a builder for building an instance of a model object.IntegergetHeight()Get the height of the image in pixels.StringgetUrl()Get the source URL of the image.IntegergetWidth()Get the width of the image in pixels.
-
-
-
Method Detail
-
getHeight
public Integer getHeight()
Get the height of the image in pixels.- Returns:
- The image height in pixels. If unknown:
null.
-
getUrl
public String getUrl()
Get the source URL of the image.- Returns:
- The source URL of the image.
-
getWidth
public Integer getWidth()
Get the width of the image in pixels.- Returns:
- The image width in pixels. If unknown:
null.
-
builder
public Image.Builder builder()
Description copied from interface:IModelObjectCreate a builder for building an instance of a model object.
The type of the builder and its methods depend on its corresponding implementation.- Returns:
- A builder object.
-
-