weiboclient4j.params.IsBase62 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.StatusService;
/**
* @author Hover Ruan
*/
public enum IsBase62 implements
StatusService.QueryIdParam,
StatusService.QueryIdListParam {
Yes(1), No(0);
private int value;
IsBase62(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public void addParameter(Parameters params) {
if (this == Yes) {
params.add("isBase62", getValue());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy