Class Artist
java.lang.Object
se.michaelthelin.spotify.model_objects.AbstractModelObject
se.michaelthelin.spotify.model_objects.specification.Artist
- All Implemented Interfaces:
Serializable
,IModelObject
,IArtistTrackModelObject
,ISearchModelObject
public class Artist
extends AbstractModelObject
implements IArtistTrackModelObject, ISearchModelObject
Retrieve information about
Artist objects by building instances from this class.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Builder class for buildingArtist
instances.static final class
JsonUtil class for buildingArtist
instances.Nested classes/interfaces inherited from interface se.michaelthelin.spotify.model_objects.IModelObject
IModelObject.IJsonUtil<T>
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Create a builder for building an instance of a model object.boolean
Get the external URLs of the artist.Get information about the followers of the artist.String[]
Get a list of all genres of the artist.getHref()
Get the full Spotify Web API endpoint URL of the artist.getId()
Get the Spotify ID of the artist.Image[]
Get all images of the artist (like header image) in different sizes.getName()
Get the name of the artist.Get the popularity of the artist in a range between 0 and 100.getType()
Get the model object type.getUri()
Get the Spotify URI of the artist.int
hashCode()
toString()
Returns a String representation of this model object in the style:
-
Method Details
-
getExternalUrls
Get the external URLs of the artist.
Example: Spotify-URL- Returns:
- An
ExternalUrl
object.
-
getFollowers
Get information about the followers of the artist.
Example: Follower count.- Returns:
- A
Followers
object.
-
getGenres
Get a list of all genres of the artist.
A great amount of artists may contain no information about their genres.- Returns:
- An array of genre names.
-
getHref
Get the full Spotify Web API endpoint URL of the artist.- Returns:
- A Spotify Web API endpoint URL.
-
getId
Get the Spotify ID of the artist.- Returns:
- A Spotify artist ID.
-
getImages
Get all images of the artist (like header image) in different sizes.- Returns:
- An array of
Image
objects.
-
getName
Get the name of the artist.- Returns:
- Artist name.
-
getPopularity
Get the popularity of the artist in a range between 0 and 100. (higher = more popular)
The popularity of the artist is based on the popularity of its tracks.- Returns:
- The popularity of the artist.
-
getType
Get the model object type. In this case "artist".- Returns:
- A
ModelObjectType
.
-
getUri
Get the Spotify URI of the artist.- Returns:
- Spotify artist URI.
-
toString
Description copied from class:AbstractModelObject
Returns a String representation of this model object in the style:ModelObject(attr1=value1, attr2=value2, ...)
- Specified by:
toString
in classAbstractModelObject
-
builder
Description copied from interface:IModelObject
Create a builder for building an instance of a model object.
The type of the builder and its methods depend on its corresponding implementation.- Specified by:
builder
in interfaceIModelObject
- Returns:
- A builder object.
-
equals
-
hashCode
public int hashCode()
-