Uses of Interface
org.jsoup.Connection.KeyVal
| Package | Description |
|---|---|
| org.jsoup |
Contains the main
Jsoup class, which provides convenient static access to the jsoup functionality. |
| org.jsoup.helper |
Package containing classes supporting the core jsoup code.
|
| org.jsoup.nodes |
HTML document structure nodes.
|
-
Uses of Connection.KeyVal in org.jsoup
Methods in org.jsoup that return Connection.KeyVal Modifier and Type Method Description Connection.KeyValConnection.KeyVal. contentType(String contentType)Set the Content Type header used in the MIME body (aka mimetype) when uploading files.Connection.KeyValConnection. data(String key)Get the data KeyVal for this key, if anyConnection.KeyValConnection.KeyVal. inputStream(InputStream inputStream)Add or update an input stream to this keyValConnection.KeyValConnection.KeyVal. key(String key)Update the key of a keyvalConnection.KeyValConnection.KeyVal. value(String value)Update the value of a keyvalMethods in org.jsoup that return types with arguments of type Connection.KeyVal Modifier and Type Method Description Collection<Connection.KeyVal>Connection.Request. data()Get all of the request's data parametersMethods in org.jsoup with parameters of type Connection.KeyVal Modifier and Type Method Description Connection.RequestConnection.Request. data(Connection.KeyVal keyval)Add a data parameter to the requestMethod parameters in org.jsoup with type arguments of type Connection.KeyVal Modifier and Type Method Description ConnectionConnection. data(Collection<Connection.KeyVal> data)Adds all of the supplied data to the request data parameters -
Uses of Connection.KeyVal in org.jsoup.helper
Classes in org.jsoup.helper that implement Connection.KeyVal Modifier and Type Class Description static classHttpConnection.KeyValMethods in org.jsoup.helper that return Connection.KeyVal Modifier and Type Method Description Connection.KeyValHttpConnection.KeyVal. contentType(String contentType)Connection.KeyValHttpConnection. data(String key)Methods in org.jsoup.helper that return types with arguments of type Connection.KeyVal Modifier and Type Method Description Collection<Connection.KeyVal>HttpConnection.Request. data()Methods in org.jsoup.helper with parameters of type Connection.KeyVal Modifier and Type Method Description HttpConnection.RequestHttpConnection.Request. data(Connection.KeyVal keyval)Method parameters in org.jsoup.helper with type arguments of type Connection.KeyVal Modifier and Type Method Description ConnectionHttpConnection. data(Collection<Connection.KeyVal> data) -
Uses of Connection.KeyVal in org.jsoup.nodes
Methods in org.jsoup.nodes that return types with arguments of type Connection.KeyVal Modifier and Type Method Description List<Connection.KeyVal>FormElement. formData()Get the data that this form submits.