| Class | Description |
|---|---|
| ByteRequest | |
| ClearCacheRequest |
A synthetic request used for clearing the cache.
|
| DownloadRequest |
A canned request for retrieving the response body at a given URL as a String.
|
| GsonRequest<T> |
Volley adapter for JSON requests that will be parsed into Java objects by Gson.
|
| GZipRequest |
A canned request for retrieving the parse the gzip response body at a given URL as a String using a GZIPInputStream.
|
| ImageRequest |
A canned request for getting an image at a given URL and calling
back with a decoded Bitmap.
|
| JsonArrayRequest |
A request for retrieving a
JSONArray response body at a given URL. |
| JsonObjectRequest |
A request for retrieving a
JSONObject response body at a given URL, allowing for an
optional JSONObject to be passed in as part of the request body. |
| JsonRequest<T> |
A request for retrieving a T type response body at a given URL that also
optionally sends along a JSON body in the request specified.
|
| MultiPartRequest<T> |
A request for making a Multi Part request
|
| MultiPartRequest.MultiPartParam |
A representation of a MultiPart parameter
|
| SimpleMultiPartRequest |
A Simple request for making a Multi Part request whose response is retrieve as String
|
| StringRequest |
A canned request for retrieving the response body at a given URL as a String.
|