Package io.vertx.mutiny.ext.web
Class FileUpload
- java.lang.Object
 - 
- io.vertx.mutiny.ext.web.FileUpload
 
 
- 
public class FileUpload extends Object
Represents a file-upload from an HTTP multipart form submission.
NOTE: This class has been automatically generated from theoriginalnon Mutiny-ified interface using Vert.x codegen. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static TypeArg<FileUpload>__TYPE_ARG 
- 
Constructor Summary
Constructors Constructor Description FileUpload(io.vertx.ext.web.FileUpload delegate)FileUpload(Object delegate) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancel()StringcharSet()StringcontentTransferEncoding()StringcontentType()booleanequals(Object o)StringfileName()io.vertx.ext.web.FileUploadgetDelegate()inthashCode()Stringname()static FileUploadnewInstance(io.vertx.ext.web.FileUpload arg)longsize()StringtoString()StringuploadedFileName() 
 - 
 
- 
- 
Field Detail
- 
__TYPE_ARG
public static final TypeArg<FileUpload> __TYPE_ARG
 
 - 
 
- 
Constructor Detail
- 
FileUpload
public FileUpload(io.vertx.ext.web.FileUpload delegate)
 
- 
FileUpload
public FileUpload(Object delegate)
 
 - 
 
- 
Method Detail
- 
getDelegate
public io.vertx.ext.web.FileUpload getDelegate()
 
- 
name
public String name()
- Returns:
 - the name of the upload as provided in the form submission
 
 
- 
uploadedFileName
public String uploadedFileName()
- Returns:
 - the actual temporary file name on the server where the file was uploaded to.
 
 
- 
fileName
public String fileName()
- Returns:
 - the file name of the upload as provided in the form submission
 
 
- 
size
public long size()
- Returns:
 - the size of the upload, in bytes
 
 
- 
contentType
public String contentType()
- Returns:
 - the content type (MIME type) of the upload
 
 
- 
contentTransferEncoding
public String contentTransferEncoding()
- Returns:
 - the content transfer encoding of the upload - this describes how the upload was encoded in the form submission.
 
 
- 
charSet
public String charSet()
- Returns:
 - the charset of the upload
 
 
- 
cancel
public boolean cancel()
- Returns:
 truewhen the upload was cancelled,falsewhen the upload is finished and the file is available
 
- 
newInstance
public static FileUpload newInstance(io.vertx.ext.web.FileUpload arg)
 
 - 
 
 -