クラス
com.android.volley.Response の使用

Response を使用しているパッケージ
com.android.volley   
 

com.android.volley での Response の使用
 

Response を返す com.android.volley のメソッド
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.
static
<T> Response<T>
Response.success(T result, Cache.Entry cacheEntry)
          Returns a successful response containing the parsed result.
 

Response 型のパラメータを持つ com.android.volley のメソッド
 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, java.lang.Runnable runnable)
          Parses a response from the network or cache and delivers it.
 void ExecutorDelivery.postResponse(Request<?> request, Response<?> response, java.lang.Runnable runnable)