Uses of Class
net.dontdrinkandroot.lastfm.api.model.Track

Packages that use Track
net.dontdrinkandroot.lastfm.api.model   
net.dontdrinkandroot.lastfm.api.model.entitytypes   
 

Uses of Track in net.dontdrinkandroot.lastfm.api.model
 

Methods in net.dontdrinkandroot.lastfm.api.model that return Track
 Track User.getRecentTrack()
           
 

Methods in net.dontdrinkandroot.lastfm.api.model that return types with arguments of type Track
static UnauthenticatedGetQuery<GenericPaginatedResult<java.util.List<Track>>> User.getArtistTracks(java.lang.String user, java.lang.String artist, java.lang.Long startTimestamp, java.lang.Long endTimestamp, java.lang.Integer page)
          Get a list of tracks by a given artist scrobbled by this user, including scrobble time.
static AuthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> User.getAuthenticatedRecentTracks(java.lang.String user, java.lang.Integer limit, java.lang.Integer page, java.lang.Integer from, java.lang.Integer to, java.lang.String sk)
          Get a list of the recent tracks listened to by this user.
static UnauthenticatedGetQuery<GenericPaginatedResult<java.util.List<Track>>> User.getBannedTracks(java.lang.String user, java.lang.Integer limit, java.lang.Integer page)
          Returns the tracks banned by the user.
static UnauthenticatedGetQuery<Track> Track.getInfo(java.lang.String artist, java.lang.String track, java.lang.String mbid, java.lang.String username)
          Get the metadata for a track on Last.fm using the artist/track name or a musicbrainz id.
static UnauthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> User.getRecentTracks(java.lang.String user, java.lang.Integer limit, java.lang.Integer page, java.lang.Integer from, java.lang.Integer to)
          Get a list of the recent tracks listened to by this user.
static UnauthenticatedGetQuery<java.util.ArrayList<Track>> Track.getSimilar(java.lang.String track, java.lang.String artist, java.lang.String mbid, java.lang.Boolean autocorrect, java.lang.Integer limit)
          Get the similar tracks for this track on Last.fm, based on listening data.
static UnauthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> Tag.getTopTracks(java.lang.String tagName, java.lang.Integer limit, java.lang.Integer page)
          Get the top tracks tagged by this tag, ordered by tag count.
static UnauthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> User.getTopTracks(java.lang.String user, Period period, java.lang.Integer limit, java.lang.Integer page)
          Get the top tracks listened to by a user.
static UnauthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> Artist.getTopTracks(java.lang.String artist, java.lang.String mbid, java.lang.Integer limit, java.lang.Integer page)
          Get the top tracks by an artist on Last.fm, ordered by popularity
 java.util.List<Track> Album.getTracks()
           
static UnauthenticatedGetQuery<PaginatedResult<java.util.List<Track>>> Library.getTracks(java.lang.String user, java.lang.String artist, java.lang.String album, java.lang.Integer limit, java.lang.Integer page)
          A paginated list of all the tracks in a user's library, with play counts and tag counts.
 

Methods in net.dontdrinkandroot.lastfm.api.model with parameters of type Track
 void User.setRecentTrack(Track recentTrack)
           
 

Method parameters in net.dontdrinkandroot.lastfm.api.model with type arguments of type Track
 void Album.setTracks(java.util.List<Track> tracks)
           
 

Uses of Track in net.dontdrinkandroot.lastfm.api.model.entitytypes
 

Methods in net.dontdrinkandroot.lastfm.api.model.entitytypes that return Track
 Track RecentTrackEntity.getRecentTrack()
           
 

Methods in net.dontdrinkandroot.lastfm.api.model.entitytypes that return types with arguments of type Track
 java.util.List<Track> TracksEntity.getTracks()
           
 

Methods in net.dontdrinkandroot.lastfm.api.model.entitytypes with parameters of type Track
 void RecentTrackEntity.setRecentTrack(Track recentTrack)
           
 

Method parameters in net.dontdrinkandroot.lastfm.api.model.entitytypes with type arguments of type Track
 void TracksEntity.setTracks(java.util.List<Track> tracks)
           
 



Copyright © 2013 dontdrinkandroot. All Rights Reserved.