Package org.jsoup.helper
Class HttpConnection.KeyVal
java.lang.Object
org.jsoup.helper.HttpConnection.KeyVal
- All Implemented Interfaces:
-
Connection.KeyVal
- Enclosing class:
- HttpConnection
-
Method Summary
Modifier and TypeMethodDescriptionString
Get the current Content Type, ornull
if not set.contentType
(String contentType) Set the Content Type header used in the MIME body (aka mimetype) when uploading files.static HttpConnection.KeyVal
create
(String key, String value) static HttpConnection.KeyVal
create
(String key, String filename, InputStream stream) boolean
Does this keyval have an input stream?Get the input stream associated with this keyval, if anyinputStream
(InputStream inputStream) Add or update an input stream to this keyValString
key()
Get the key of a keyvalkey
(String key) Update the key of a keyvalString
toString()
String
value()
Get the value of a keyvalvalue
(String value) Update the value of a keyvalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Method Details
-
create
-
create
-
key
Description copied from interface:Connection.KeyVal
Update the key of a keyval- Specified by:
-
key
in interfaceConnection.KeyVal
- Parameters:
-
key
- new key - Returns:
- this KeyVal, for chaining
-
key
public String key()Description copied from interface:Connection.KeyVal
Get the key of a keyval- Specified by:
-
key
in interfaceConnection.KeyVal
- Returns:
- the key
-
value
Description copied from interface:Connection.KeyVal
Update the value of a keyval- Specified by:
-
value
in interfaceConnection.KeyVal
- Parameters:
-
value
- the new value - Returns:
- this KeyVal, for chaining
-
value
public String value()Description copied from interface:Connection.KeyVal
Get the value of a keyval- Specified by:
-
value
in interfaceConnection.KeyVal
- Returns:
- the value
-
inputStream
Description copied from interface:Connection.KeyVal
Add or update an input stream to this keyVal- Specified by:
-
inputStream
in interfaceConnection.KeyVal
- Parameters:
-
inputStream
- new input stream - Returns:
- this KeyVal, for chaining
-
inputStream
Description copied from interface:Connection.KeyVal
Get the input stream associated with this keyval, if any- Specified by:
-
inputStream
in interfaceConnection.KeyVal
- Returns:
- input stream if set, or null
-
hasInputStream
public boolean hasInputStream()Description copied from interface:Connection.KeyVal
Does this keyval have an input stream?- Specified by:
-
hasInputStream
in interfaceConnection.KeyVal
- Returns:
- true if this keyval does indeed have an input stream
-
contentType
Description copied from interface:Connection.KeyVal
Set the Content Type header used in the MIME body (aka mimetype) when uploading files. Only useful ifConnection.KeyVal.inputStream(InputStream)
is set.Will default to
application/octet-stream
.- Specified by:
-
contentType
in interfaceConnection.KeyVal
- Parameters:
-
contentType
- the new content type - Returns:
- this KeyVal
-
contentType
public String contentType()Description copied from interface:Connection.KeyVal
Get the current Content Type, ornull
if not set.- Specified by:
-
contentType
in interfaceConnection.KeyVal
- Returns:
- the current Content Type.
-
toString
public String toString()- Overrides:
-
toString
in classObject
-