public static interface

Connection.KeyVal

org.jsoup.Connection.KeyVal
Known Indirect Subclasses

Class Overview

A Key Value tuple.

Summary

Public Methods
abstract Connection.KeyVal key(String key)
Update the key of a keyval
abstract String key()
Get the key of a keyval
abstract String value()
Get the value of a keyval
abstract Connection.KeyVal value(String value)
Update the value of a keyval

Public Methods

public abstract Connection.KeyVal key (String key)

Update the key of a keyval

Parameters
key new key
Returns
  • this KeyVal, for chaining

public abstract String key ()

Get the key of a keyval

Returns
  • the key

public abstract String value ()

Get the value of a keyval

Returns
  • the value

public abstract Connection.KeyVal value (String value)

Update the value of a keyval

Parameters
value the new value
Returns
  • this KeyVal, for chaining