|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.umass.lastfm.Library
Contains bindings for all methods in the "library" namespace.
Method Summary | |
static Result |
addAlbum(String artist,
String album,
Session session)
Add an album to a user's Last.fm library |
static Result |
addArtist(String artist,
Session session)
Add an artist to a user's Last.fm library |
static Result |
addTrack(String artist,
String track,
Session session)
Add a track to a user's Last.fm library |
static PaginatedResult |
getAlbums(String user,
int page,
int limit,
String apiKey)
Retrieves a paginated list of all the albums in a user's library. |
static PaginatedResult |
getAlbums(String user,
int page,
String apiKey)
Retrieves a paginated list of all the albums in a user's library. |
static PaginatedResult |
getAlbums(String user,
String apiKey)
Retrieves a paginated list of all the albums in a user's library. |
static Collection |
getAllAlbums(String user,
String apiKey)
Retrieves all albums in a user's library. |
static Collection |
getAllArtists(String user,
String apiKey)
Retrieves all artists in a user's library. |
static Collection |
getAllTracks(String user,
String apiKey)
Retrieves all tracks in a user's library. |
static PaginatedResult |
getArtists(String user,
int page,
int limit,
String apiKey)
Retrieves a paginated list of all the artists in a user's library. |
static PaginatedResult |
getArtists(String user,
int page,
String apiKey)
Retrieves a paginated list of all the artists in a user's library. |
static PaginatedResult |
getArtists(String user,
String apiKey)
Retrieves a paginated list of all the artists in a user's library. |
static PaginatedResult |
getTracks(String user,
int page,
int limit,
String apiKey)
Retrieves a paginated list of all the tracks in a user's library. |
static PaginatedResult |
getTracks(String user,
int page,
String apiKey)
Retrieves a paginated list of all the tracks in a user's library. |
static PaginatedResult |
getTracks(String user,
String apiKey)
Retrieves a paginated list of all the tracks in a user's library. |
static Result |
removeAlbum(String artist,
String album,
Session session)
Remove an album from a user's Last.fm library |
static Result |
removeArtist(String artist,
Session session)
Remove an artist from a user's Last.fm library |
static Result |
removeScrobble(String artist,
String track,
long timestamp,
Session session)
Remove a scrobble from a user's Last.fm library |
static Result |
removeTrack(String artist,
String track,
Session session)
Remove a track from a user's Last.fm library |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static PaginatedResult getArtists(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
PaginatedResult
of the artistspublic static PaginatedResult getArtists(String user, int page, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.apiKey
- A Last.fm API key.
PaginatedResult
of the artistspublic static PaginatedResult getArtists(String user, int page, int limit, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.limit
- Limit the amount of artists returned (maximum/default is 50).apiKey
- A Last.fm API key.
PaginatedResult
of the artistspublic static Collection getAllArtists(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
public static PaginatedResult getAlbums(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
PaginatedResult
of the albumspublic static PaginatedResult getAlbums(String user, int page, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.apiKey
- A Last.fm API key.
PaginatedResult
of the albumspublic static PaginatedResult getAlbums(String user, int page, int limit, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.limit
- Limit the amount of albumss returned (maximum/default is 50).apiKey
- A Last.fm API key.
PaginatedResult
of the albumspublic static Collection getAllAlbums(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
public static PaginatedResult getTracks(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
PaginatedResult
of the trackspublic static PaginatedResult getTracks(String user, int page, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.apiKey
- A Last.fm API key.
PaginatedResult
of the trackspublic static PaginatedResult getTracks(String user, int page, int limit, String apiKey)
user
- The user whose library you want to fetch.page
- The page number you wish to scan to.limit
- Limit the amount of albumss returned (maximum/default is 50).apiKey
- A Last.fm API key.
PaginatedResult
of the trackspublic static Collection getAllTracks(String user, String apiKey)
user
- The user whose library you want to fetch.apiKey
- A Last.fm API key.
public static Result addArtist(String artist, Session session)
artist
- The artist name you wish to addsession
- A Session instance
public static Result addAlbum(String artist, String album, Session session)
artist
- The artist that composed the trackalbum
- The album name you wish to addsession
- A Session instance
public static Result addTrack(String artist, String track, Session session)
artist
- The artist that composed the tracktrack
- The track name you wish to addsession
- A Session instance
public static Result removeArtist(String artist, Session session)
artist
- The artist name you wish to removesession
- A Session instance
public static Result removeAlbum(String artist, String album, Session session)
artist
- The artist that composed the albumalbum
- The name of the album you wish to removesession
- A Session instance
public static Result removeTrack(String artist, String track, Session session)
artist
- The artist that composed the tracktrack
- The name of the track that you wish to removesession
- A Session instance
public static Result removeScrobble(String artist, String track, long timestamp, Session session)
artist
- The artist that composed the tracktrack
- The name of the tracktimestamp
- The unix timestamp of the scrobble that you wish to removesession
- A Session instance
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |