![JAR search and dependency download from the Maven repository](/logo.png)
ru.blizzed.openlastfm.methods.ApiChart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlastfm Show documentation
Show all versions of openlastfm Show documentation
Simple Java library for non-auth methods of Last.FM API
The newest version!
/*
* Copyright (c) 2017 BlizzedRu (Ivan Vlasov)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ru.blizzed.openlastfm.methods;
import com.google.gson.reflect.TypeToken;
import ru.blizzed.openlastfm.models.PageResult;
import ru.blizzed.openlastfm.models.PaginatedResultModelParser;
import ru.blizzed.openlastfm.models.artist.Artist;
import ru.blizzed.openlastfm.models.tag.TopTag;
import ru.blizzed.openlastfm.models.track.Track;
import ru.blizzed.openlastfm.params.LastFMParams;
/**
* This class provides available methods of section "Chart"
*
* @author BlizzedRu (Ivan Vlasov)
*/
public final class ApiChart {
private static final String alias = "Chart";
private ApiChart() {
}
public static ApiMethod> getTopArtists() {
return new ApiMethod.Builder>(alias, "getTopArtists")
.addParamsDescriptions(
new ApiParamDescription(LastFMParams.PAGE, false),
new ApiParamDescription(LastFMParams.LIMIT, false)
)
.buildWithResultModelParser(new PaginatedResultModelParser<>(new TypeToken>() {
}));
}
public static ApiMethod> getTopTags() {
return new ApiMethod.Builder>(alias, "getTopTags")
.addParamsDescriptions(
new ApiParamDescription(LastFMParams.PAGE, false),
new ApiParamDescription(LastFMParams.LIMIT, false)
)
.buildWithResultModelParser(new PaginatedResultModelParser<>(new TypeToken>() {
}));
}
public static ApiMethod> getTopTracks() {
return new ApiMethod.Builder>(alias, "getTopTracks")
.addParamsDescriptions(
new ApiParamDescription(LastFMParams.PAGE, false),
new ApiParamDescription(LastFMParams.LIMIT, false)
)
.buildWithResultModelParser(new PaginatedResultModelParser<>(new TypeToken>() {
}));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy