Class MultipartForm
- java.lang.Object
-
- io.vertx.reactivex.ext.web.multipart.MultipartForm
-
- All Implemented Interfaces:
Iterable<FormDataPart>
public class MultipartForm extends Object implements Iterable<FormDataPart>
A multipart form.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<MultipartForm>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description MultipartForm(MultipartForm delegate)
MultipartForm(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MultipartForm
attribute(String name, String value)
Add an attribute form data part.MultipartForm
binaryFileUpload(String name, String filename, Buffer content, String mediaType)
Add a binary file upload form data part.MultipartForm
binaryFileUpload(String name, String filename, String pathname, String mediaType)
Add a binary file upload form data part.static MultipartForm
create()
boolean
equals(Object o)
Charset
getCharset()
MultipartForm
getDelegate()
int
hashCode()
Iterator<FormDataPart>
iterator()
static MultipartForm
newInstance(MultipartForm arg)
MultipartForm
setCharset(String charset)
Set thecharset
to use when encoding the form.MultipartForm
setCharset(Charset charset)
Set thecharset
to use when encoding the form.MultipartForm
textFileUpload(String name, String filename, Buffer content, String mediaType)
Add a text file upload form data part.MultipartForm
textFileUpload(String name, String filename, String pathname, String mediaType)
Add a text file upload form data part.String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<MultipartForm> __TYPE_ARG
-
-
Constructor Detail
-
MultipartForm
public MultipartForm(MultipartForm delegate)
-
MultipartForm
public MultipartForm(Object delegate)
-
-
Method Detail
-
iterator
public Iterator<FormDataPart> iterator()
- Specified by:
iterator
in interfaceIterable<FormDataPart>
-
getDelegate
public MultipartForm getDelegate()
-
create
public static MultipartForm create()
- Returns:
- a multipart form instance
-
setCharset
public MultipartForm setCharset(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
-
attribute
public MultipartForm attribute(String name, String value)
Add an attribute form data part.- Parameters:
name
- the name of the attributevalue
- the value of the attribute- Returns:
- a reference to this, so the API can be used fluently
-
textFileUpload
public MultipartForm textFileUpload(String name, String filename, String pathname, String mediaType)
Add a text file upload form data part.- Parameters:
name
- name of the parameterfilename
- filename of the filepathname
- the pathname of the filemediaType
- the MIME type of the file- Returns:
- a reference to this, so the API can be used fluently
-
textFileUpload
public MultipartForm textFileUpload(String name, String filename, Buffer content, String mediaType)
Add a text file upload form data part.- Parameters:
name
- name of the parameterfilename
- filename of the filecontent
- the content of the filemediaType
- the MIME type of the file- Returns:
- a reference to this, so the API can be used fluently
-
binaryFileUpload
public MultipartForm binaryFileUpload(String name, String filename, String pathname, String mediaType)
Add a binary file upload form data part.- Parameters:
name
- name of the parameterfilename
- filename of the filepathname
- the pathname of the filemediaType
- the MIME type of the file- Returns:
- a reference to this, so the API can be used fluently
-
binaryFileUpload
public MultipartForm binaryFileUpload(String name, String filename, Buffer content, String mediaType)
Add a binary file upload form data part.- Parameters:
name
- name of the parameterfilename
- filename of the filecontent
- the content of the filemediaType
- the MIME type of the file- Returns:
- a reference to this, so the API can be used fluently
-
setCharset
public MultipartForm setCharset(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
-
getCharset
public Charset getCharset()
- Returns:
- the charset to use when encoding the form
-
newInstance
public static MultipartForm newInstance(MultipartForm arg)
-
-