default R |
HttpRequest.accept(ContentType value) |
The Accept header to send (e.g.
|
default HttpRequestWithBody |
HttpRequestWithBody.contentType(ContentType type) |
|
MultipartBody |
HttpRequestBody.field(java.lang.String name,
java.io.InputStream stream,
ContentType contentType,
java.lang.String fileName) |
|
MultipartBody |
HttpRequestMultiPart.field(java.lang.String name,
byte[] bytes,
ContentType contentType,
java.lang.String fileName) |
|
MultipartBody |
HttpRequestMultiPart.field(java.lang.String name,
java.io.InputStream value,
ContentType contentType) |
|
MultipartBody |
HttpRequestMultiPart.field(java.lang.String name,
java.io.InputStream stream,
ContentType contentType,
java.lang.String fileName) |
|
MultipartBody |
HttpRequestMultiPart.field(java.lang.String name,
java.lang.String value,
ContentType contentType) |
|
MultipartBody |
HttpRequestWithBody.field(java.lang.String name,
java.io.InputStream stream,
ContentType contentType,
java.lang.String fileName) |
Sets a File on the body from a raw InputStream requires a specified content-type and file name.
|
MultipartBody |
MultipartBody.field(java.lang.String name,
byte[] bytes,
ContentType contentType,
java.lang.String fileName) |
add a simple field with a name and value
|
MultipartBody |
MultipartBody.field(java.lang.String name,
java.io.InputStream value,
ContentType contentType) |
add a simple field with a name and value
|
MultipartBody |
MultipartBody.field(java.lang.String name,
java.io.InputStream stream,
ContentType contentType,
java.lang.String fileName) |
add a simple field with a name and value
|
MultipartBody |
MultipartBody.field(java.lang.String name,
java.lang.String value,
ContentType contentType) |
add a simple field with a name and value
|