Package | Description |
---|---|
com.teamdev.jxbrowser.net |
Contains classes and interfaces for working with network.
|
Modifier and Type | Method and Description |
---|---|
static MultipartFormData.Pair |
MultipartFormData.Pair.of(java.lang.String key,
File value)
Returns the
Pair instance for the given key and value . |
static MultipartFormData.Pair |
MultipartFormData.Pair.of(java.lang.String key,
java.lang.String value)
Returns the
Pair instance for the given key and value . |
Modifier and Type | Method and Description |
---|---|
default java.util.List<MultipartFormData.Pair> |
MultipartFormData.data()
Returns an immutable list of the key-value pairs each representing a segment of a multi-part
form data or an empty list if the form does not contain any data.
|
Modifier and Type | Method and Description |
---|---|
MultipartFormData.Builder |
MultipartFormData.Builder.addPair(MultipartFormData.Pair pair)
Sets the key-value pair that represents a segment of the multi-part form data.
|