Uses of Class
com.android.volley.Response

Packages that use Response
com.android.volley   
com.android.volley.toolbox   
 

Uses of Response in com.android.volley
 

Methods in com.android.volley that return Response
static
<T> Response<T>
Response.error(VolleyError error)
          Returns a failed response containing the given error code and an optional localized message displayed to the user.
protected abstract  Response<T> Request.parseNetworkResponse(NetworkResponse response)
          Subclasses must implement this to parse the raw network response and return an appropriate response type.
static
<T> Response<T>
Response.success(T result, Cache.Entry cacheEntry)
          Returns a successful response containing the parsed result.
 

Methods in com.android.volley with parameters of type Response
 void ResponseDelivery.postResponse(Request<?> request, Response<?> response)
          Parses a response from the network or cache and delivers it.
 void ExecutorDelivery.postResponse(Request<?> request, Response<?> response)
           
 void ResponseDelivery.postResponse(Request<?> request, Response<?> response, Runnable runnable)
          Parses a response from the network or cache and delivers it.
 void ExecutorDelivery.postResponse(Request<?> request, Response<?> response, Runnable runnable)
           
 

Uses of Response in com.android.volley.toolbox
 

Methods in com.android.volley.toolbox that return Response
protected  Response<String> StringRequest.parseNetworkResponse(NetworkResponse response)
           
protected abstract  Response<T> JsonRequest.parseNetworkResponse(NetworkResponse response)
           
protected  Response<JSONObject> JsonObjectRequest.parseNetworkResponse(NetworkResponse response)
           
protected  Response<JSONArray> JsonArrayRequest.parseNetworkResponse(NetworkResponse response)
           
protected  Response<Bitmap> ImageRequest.parseNetworkResponse(NetworkResponse response)
           
protected  Response<Object> ClearCacheRequest.parseNetworkResponse(NetworkResponse response)