| Package | Description |
|---|---|
| net.dontdrinkandroot.lastfm.api.model | |
| net.dontdrinkandroot.lastfm.api.model.entitytypes |
| Modifier and Type | Method and Description |
|---|---|
Track |
User.getRecentTrack() |
| Modifier and Type | Method and Description |
|---|---|
static UnauthenticatedGetQuery<GenericPaginatedResult<List<Track>>> |
User.getArtistTracks(String user,
String artist,
Long startTimestamp,
Long endTimestamp,
Integer page)
Get a list of tracks by a given artist scrobbled by this user, including scrobble time.
|
static AuthenticatedGetQuery<PaginatedResult<List<Track>>> |
User.getAuthenticatedRecentTracks(String user,
Integer limit,
Integer page,
Integer from,
Integer to,
String sk)
Get a list of the recent tracks listened to by this user.
|
static UnauthenticatedGetQuery<GenericPaginatedResult<List<Track>>> |
User.getBannedTracks(String user,
Integer limit,
Integer page)
Returns the tracks banned by the user.
|
static UnauthenticatedGetQuery<Track> |
Track.getInfo(String artist,
String track,
String mbid,
String username)
Get the metadata for a track on Last.fm using the artist/track name or a musicbrainz id.
|
static UnauthenticatedGetQuery<PaginatedResult<List<Track>>> |
User.getRecentTracks(String user,
Integer limit,
Integer page,
Integer from,
Integer to)
Get a list of the recent tracks listened to by this user.
|
static UnauthenticatedGetQuery<ArrayList<Track>> |
Track.getSimilar(String track,
String artist,
String mbid,
Boolean autocorrect,
Integer limit)
Get the similar tracks for this track on Last.fm, based on listening data.
|
static UnauthenticatedGetQuery<PaginatedResult<List<Track>>> |
Tag.getTopTracks(String tagName,
Integer limit,
Integer page)
Get the top tracks tagged by this tag, ordered by tag count.
|
static UnauthenticatedGetQuery<PaginatedResult<List<Track>>> |
User.getTopTracks(String user,
Period period,
Integer limit,
Integer page)
Get the top tracks listened to by a user.
|
static UnauthenticatedGetQuery<PaginatedResult<List<Track>>> |
Artist.getTopTracks(String artist,
String mbid,
Integer limit,
Integer page)
Get the top tracks by an artist on Last.fm, ordered by popularity
|
List<Track> |
Album.getTracks() |
static UnauthenticatedGetQuery<PaginatedResult<List<Track>>> |
Library.getTracks(String user,
String artist,
String album,
Integer limit,
Integer page)
A paginated list of all the tracks in a user's library, with play counts and tag counts.
|
| Modifier and Type | Method and Description |
|---|---|
void |
User.setRecentTrack(Track recentTrack) |
| Modifier and Type | Method and Description |
|---|---|
void |
Album.setTracks(List<Track> tracks) |
| Modifier and Type | Method and Description |
|---|---|
Track |
RecentTrackEntity.getRecentTrack() |
| Modifier and Type | Method and Description |
|---|---|
List<Track> |
TracksEntity.getTracks() |
| Modifier and Type | Method and Description |
|---|---|
void |
RecentTrackEntity.setRecentTrack(Track recentTrack) |
| Modifier and Type | Method and Description |
|---|---|
void |
TracksEntity.setTracks(List<Track> tracks) |
Copyright © 2013 dontdrinkandroot. All Rights Reserved.