Package io.vertx.rxjava3.core.http
Class ClientForm
- java.lang.Object
-
- io.vertx.rxjava3.core.http.ClientForm
-
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
- Direct Known Subclasses:
ClientMultipartForm
public class ClientForm extends Object implements io.vertx.lang.rx.RxDelegate
A form: a container for attributes.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ClientForm>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ClientForm(ClientForm delegate)
ClientForm(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClientForm
attribute(String name, String value)
Charset
charset()
ClientForm
charset(String charset)
Set thecharset
to use when encoding the form.ClientForm
charset(Charset charset)
Set thecharset
to use when encoding the form.boolean
equals(Object o)
static ClientForm
form()
static ClientForm
form(MultiMap initial)
ClientForm
getDelegate()
int
hashCode()
static ClientForm
newInstance(ClientForm arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ClientForm> __TYPE_ARG
-
-
Constructor Detail
-
ClientForm
public ClientForm(ClientForm delegate)
-
ClientForm
public ClientForm(Object delegate)
-
-
Method Detail
-
getDelegate
public ClientForm getDelegate()
- Specified by:
getDelegate
in interfaceio.vertx.lang.rx.RxDelegate
-
form
public static ClientForm form()
- Returns:
- a blank form
-
form
public static ClientForm form(MultiMap initial)
- Parameters:
initial
- the initial content of the form- Returns:
- a form populated after the
initial
multimap
-
attribute
public ClientForm attribute(String name, String value)
-
charset
public ClientForm charset(String charset)
Set thecharset
to use when encoding the form. The default charset isStandardCharsets
.- Parameters:
charset
- the charset to use- Returns:
- a reference to this, so the API can be used fluently
-
charset
public ClientForm charset(Charset charset)
Set thecharset
to use when encoding the form. The default charset isStandardCharsets
.- Parameters:
charset
- the charset to use- Returns:
- a reference to this, so the API can be used fluently
-
charset
public Charset charset()
- Returns:
- the charset to use when encoding the form
-
newInstance
public static ClientForm newInstance(ClientForm arg)
-
-