weiboclient4j.params.Coordinates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weiboclient4j Show documentation
Show all versions of weiboclient4j Show documentation
Java library for Sina Weibo
package weiboclient4j.params;
import weiboclient4j.LocationService;
import static weiboclient4j.utils.StringUtils.join;
public class Coordinates extends StringParam implements
LocationService.GetMapImageParam {
public Coordinates(String value) {
super(value);
}
public Coordinates(Coordinate... coordinates) {
this(join(coordinates, "|"));
}
protected String paramKey() {
return "coordinates";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy