當前位置: 首頁>>代碼示例>>Java>>正文


Java User類代碼示例

本文整理匯總了Java中com.wrapper.spotify.models.User的典型用法代碼示例。如果您正苦於以下問題:Java User類的具體用法?Java User怎麽用?Java User使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


User類屬於com.wrapper.spotify.models包,在下文中一共展示了User類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: isValidPlaylistTrack

import com.wrapper.spotify.models.User; //導入依賴的package包/類
/**
 * determine if a given song is part of a user's playlist
 * @param song a given played song
 * @param user the user that played the song
 * @return if the song is played from one of the user's playlists
 */
public Boolean isValidPlaylistTrack(CurrentlyPlayingTrack song, User user) {
    if (song.getContext() == null) {
        return false;
    }
    else {
        return song.getContext().getUri().contains(user.getId());
    }
}
 
開發者ID:cmb9400,項目名稱:skip-assistant,代碼行數:15,代碼來源:SpotifyHelperService.java

示例2: getUser

import com.wrapper.spotify.models.User; //導入依賴的package包/類
public User getUser() {
    return user;
}
 
開發者ID:cmb9400,項目名稱:skip-assistant,代碼行數:4,代碼來源:SpotifyPollingService.java

示例3: getAddedBy

import com.wrapper.spotify.models.User; //導入依賴的package包/類
public User getAddedBy() {
    return addedBy;
}
 
開發者ID:bradfogle,項目名稱:slack-spotify-playlist,代碼行數:4,代碼來源:ComparablePlaylistTrack.java

示例4: setAddedBy

import com.wrapper.spotify.models.User; //導入依賴的package包/類
public void setAddedBy(User addedBy) {
    this.addedBy = addedBy;
}
 
開發者ID:bradfogle,項目名稱:slack-spotify-playlist,代碼行數:4,代碼來源:ComparablePlaylistTrack.java


注:本文中的com.wrapper.spotify.models.User類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。