Back to project page ponyville-live-android.
The source code is released under:
Apache License
If you think the Android project ponyville-live-android 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 com.ponyvillelive.app.prefs; /*from w ww.j a v a 2 s .c om*/ import com.ponyvillelive.app.net.NetModule; public enum ApiEndpoints { PRODUCTION("Production", NetModule.PRODUCTION_API_URL), STAGING("Staging", "https://ponyvillelive.apiary.io/api"), MOCK_MODE("Mock Mode", "mock://"), CUSTOM("Custom", null); public final String name; public final String url; ApiEndpoints(String name, String url) { this.name = name; this.url = url; } @Override public String toString() { return name; } public static ApiEndpoints from(String endpoint) { for (ApiEndpoints value : values()) { if (value.url != null && value.url.equals(endpoint)) { return value; } } return CUSTOM; } public static boolean isMockMode(String endpoint) { return from(endpoint) == MOCK_MODE; } }