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; //ww w. j a v a 2s. co m /** * Created by alexis on 25/10/13. */ public enum Request { NearbySearch, TextSearch, RadarSearch, Autocomplete, QueryAutocomplete, Photo; public String getValue() { return this.name().toLowerCase(); } }