ru.blizzed.opensongkick.params.LocationParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenSongKick Show documentation
Show all versions of OpenSongKick Show documentation
Simple Java library for non-auth methods of Songkick.com API
The newest version!
package ru.blizzed.opensongkick.params;
public class LocationParam extends Param {
public enum Type {
SK, GEO, IP, CLIENTIP
}
private Type type;
public LocationParam(Type type) {
super("location");
this.type = type;
}
public Type getType() {
return type;
}
@Override
public String toString() {
return type.name().toLowerCase() + ":" + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy