
co.fusionx.spotify.component.SearchComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api Show documentation
Show all versions of spotify-web-api Show documentation
Library which allows easy async and sync access to the Spotify Web APIs
The newest version!
package co.fusionx.spotify.component;
import java.util.Collection;
import co.fusionx.spotify.model.Artist;
import co.fusionx.spotify.model.PagingObject;
import co.fusionx.spotify.model.SearchResult;
import co.fusionx.spotify.model.SimpleAlbum;
import co.fusionx.spotify.model.SimpleTrack;
import co.fusionx.spotify.optional.search.OptionalSearch;
public interface SearchComponent {
public PagingObject extends Artist> searchArtist(String artist);
public PagingObject extends SimpleAlbum> searchAlbum(String album);
public PagingObject extends SimpleTrack> searchTrack(String track);
public SearchResult search(String query,
Collection types);
public SearchResult search(String query,
Collection types, OptionalSearch search);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy