Back to project page android-async-google-places.
The source code is released under:
Apache License
If you think the Android project android-async-google-places listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.github.axxiss.places.enums; // w w w .j a va 2 s . c om /** * @author Alexis Mas <alexis @ holla.com> */ public enum RankBy { PROMINENCE("prominence"), DISTANCE("distance"); private String mValue; RankBy(String value) { mValue = value; } public String getvalue() { return mValue; } }