All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.blizzed.opensongkick.params.LocationParam Maven / Gradle / Ivy

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