Back to project page Projectile.
The source code is released under:
Apache License
If you think the Android project Projectile 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 org.nicktate.projectile; /* ww w .j av a 2s . co m*/ import com.android.volley.Request; /** * Priority Method Type Mapping to {@link com.android.volley.Request.Method} for enum convenience in builder */ public enum Priority { LOW(Request.Priority.LOW), NORMAL(Request.Priority.NORMAL), HIGH(Request.Priority.HIGH), IMMEDIATE(Request.Priority.IMMEDIATE); private Request.Priority mPriority; public Request.Priority getValue() { return mPriority; } Priority(Request.Priority p) { mPriority = p; } }