Package com.tagtraum.ubermusic
Class Artist
- java.lang.Object
-
- com.tagtraum.ubermusic.Artist
-
- All Implemented Interfaces:
AudioArtist
- Direct Known Subclasses:
BeatportArtist
,LastFMArtist
,WikidataArtist
public class Artist extends Object implements AudioArtist
Base implementation for anAudioArtist
.- Author:
- Hendrik Schreiber
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getBiography()
Artist biography.Set<AudioId>
getIds()
Artist ids.String
getName()
Artist name.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getBiography
public String getBiography()
Description copied from interface:AudioArtist
Artist biography. May returnnull
.- Specified by:
getBiography
in interfaceAudioArtist
- Returns:
- bio
-
getIds
public Set<AudioId> getIds()
Description copied from interface:AudioArtist
Artist ids.- Specified by:
getIds
in interfaceAudioArtist
- Returns:
- ids, never
null
- See Also:
AudioSong.getArtistIds()
-
getName
public String getName()
Description copied from interface:AudioArtist
Artist name.- Specified by:
getName
in interfaceAudioArtist
- Returns:
- name
-
-