
com.avos.avoscloud.AVOSServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leancloud-common Show documentation
Show all versions of leancloud-common Show documentation
leancloud java sdk common library
The newest version!
package com.avos.avoscloud;
public enum AVOSServices {
API("api"), PUSH("push"), RTM("rtm"), STATS("stats"), ENGINE("engine");
private String service;
private AVOSServices(String service) {
this.service = service;
}
@Override
public String toString() {
return this.service;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy