Class FormDataPart
java.lang.Object
io.vertx.mutiny.ext.web.multipart.FormDataPart
- All Implemented Interfaces:
MutinyDelegate
A form data part of a
MultipartForm
.
NOTE: This class has been automatically generated from the original
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionFormDataPart
(io.vertx.ext.web.multipart.FormDataPart delegate) FormDataPart
(Object delegate) -
Method Summary
Modifier and TypeMethodDescriptioncontent()
boolean
filename()
io.vertx.ext.web.multipart.FormDataPart
int
hashCode()
boolean
boolean
isText()
name()
static FormDataPart
newInstance
(io.vertx.ext.web.multipart.FormDataPart arg) pathname()
toString()
value()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
FormDataPart
public FormDataPart(io.vertx.ext.web.multipart.FormDataPart delegate) -
FormDataPart
-
-
Method Details
-
getDelegate
public io.vertx.ext.web.multipart.FormDataPart getDelegate()- Specified by:
getDelegate
in interfaceMutinyDelegate
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
name
- Returns:
- the name
-
isAttribute
public boolean isAttribute()- Returns:
true
when this part is an attribute
-
isFileUpload
public boolean isFileUpload()- Returns:
true
when this part is a file upload
-
value
- Returns:
- the value when the part for a form attribute otherwise
null
-
filename
- Returns:
- the filename when this part is a file upload otherwise
null
-
pathname
- Returns:
- the pathname when this part is a file upload created with a pathname otherwise
null
-
content
- Returns:
- the content when this part is a file upload created with a buffer otherwise
null
-
mediaType
- Returns:
- the media type when this part is a file upload otherwise
null
-
isText
- Returns:
- whether the file upload is text or binary when this part is a file upload otherwise
null
-
newInstance
-