Skip navigation links
A C D E F G I M N P R S U 

A

AbstractFileBuffer - Class in com.vaadin.flow.component.upload.receivers
Abstract class for common file receiver buffers.
AbstractFileBuffer() - Constructor for class com.vaadin.flow.component.upload.receivers.AbstractFileBuffer
Constructor for creating a file buffer with the default file factory.
AbstractFileBuffer(FileFactory) - Constructor for class com.vaadin.flow.component.upload.receivers.AbstractFileBuffer
Constructor taking in the file factory used to create upload File.
addAllFinishedListener(ComponentEventListener<AllFinishedEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add listener that is informed on all uploads finished.
addFailedListener(ComponentEventListener<FailedEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add a succeeded listener that is informed on upload failure.
addFileAbortListener(ComponentEventListener<GeneratedVaadinUploadFile.FileAbortEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
Adds a listener for file-abort events fired by the webcomponent.
addFileRejectedListener(ComponentEventListener<FileRejectedEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Adds a listener for file-reject events fired when a file cannot be added due to some constrains: setMaxFileSize, setMaxFiles, setAcceptedFileTypes
addFileRejectListener(ComponentEventListener<GeneratedVaadinUpload.FileRejectEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for file-reject events fired by the webcomponent.
addFileRemoveListener(ComponentEventListener<GeneratedVaadinUploadFile.FileRemoveEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
Adds a listener for file-remove events fired by the webcomponent.
addFileRetryListener(ComponentEventListener<GeneratedVaadinUploadFile.FileRetryEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
Adds a listener for file-retry events fired by the webcomponent.
AddFiles() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.AddFiles
 
addFilesChangeListener(ComponentEventListener<GeneratedVaadinUpload.FilesChangeEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for files-changed events fired by the webcomponent.
addFileStartListener(ComponentEventListener<GeneratedVaadinUploadFile.FileStartEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
Adds a listener for file-start events fired by the webcomponent.
addFinishedListener(ComponentEventListener<FinishedEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add a succeeded listener that is informed on upload finished.
addMaxFilesReachedChangeListener(ComponentEventListener<GeneratedVaadinUpload.MaxFilesReachedChangeEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for max-files-reached-changed events fired by the webcomponent.
addProgressListener(ComponentEventListener<ProgressUpdateEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add a progress listener that is informed on upload progress.
addStartedListener(ComponentEventListener<StartedEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add a succeeded listener that is informed on upload start.
addSucceededListener(ComponentEventListener<SucceededEvent>) - Method in class com.vaadin.flow.component.upload.Upload
Add a succeeded listener that is informed on upload succeeded.
addToAddButton(Component...) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds the given components as children of this component at the slot 'add-button'.
addToDropLabel(Component...) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds the given components as children of this component at the slot 'drop-label'.
addToDropLabelIcon(Component...) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds the given components as children of this component at the slot 'drop-label-icon'.
addToFileList(Component...) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds the given components as children of this component at the slot 'file-list'.
addUploadAbortListener(ComponentEventListener<GeneratedVaadinUpload.UploadAbortEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-abort events fired by the webcomponent.
addUploadBeforeListener(ComponentEventListener<GeneratedVaadinUpload.UploadBeforeEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-before events fired by the webcomponent.
addUploadErrorListener(ComponentEventListener<GeneratedVaadinUpload.UploadErrorEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-error events fired by the webcomponent.
addUploadProgressListener(ComponentEventListener<GeneratedVaadinUpload.UploadProgressEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-progress events fired by the webcomponent.
addUploadRequestListener(ComponentEventListener<GeneratedVaadinUpload.UploadRequestEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-request events fired by the webcomponent.
addUploadResponseListener(ComponentEventListener<GeneratedVaadinUpload.UploadResponseEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-response events fired by the webcomponent.
addUploadRetryListener(ComponentEventListener<GeneratedVaadinUpload.UploadRetryEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-retry events fired by the webcomponent.
addUploadStartListener(ComponentEventListener<GeneratedVaadinUpload.UploadStartEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-start events fired by the webcomponent.
addUploadSuccessListener(ComponentEventListener<GeneratedVaadinUpload.UploadSuccessEvent<R>>) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Adds a listener for upload-success events fired by the webcomponent.
AllFinishedEvent - Class in com.vaadin.flow.component.upload
AllFinishedEvent is sent when the upload has processed all the files in its upload queue, regardless of whether all the receptions were successful or not.
AllFinishedEvent(Upload) - Constructor for class com.vaadin.flow.component.upload.AllFinishedEvent
Create an instance of the event.

C

com.vaadin.flow.component.upload - package com.vaadin.flow.component.upload
 
com.vaadin.flow.component.upload.receivers - package com.vaadin.flow.component.upload.receivers
 
createFile(String) - Method in interface com.vaadin.flow.component.upload.receivers.FileFactory
Create a new file for given file name.
createFileOutputStream(String) - Method in class com.vaadin.flow.component.upload.receivers.AbstractFileBuffer
Create a file output stream for the file.

D

DropFiles() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.DropFiles
 

E

Error() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Error
 
Error() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 

F

FailedEvent - Class in com.vaadin.flow.component.upload
FailedEvent event is sent when the upload is received, but the reception is interrupted for some reason.
FailedEvent(Upload, String, String, long, Exception) - Constructor for class com.vaadin.flow.component.upload.FailedEvent
Create an instance of the event.
FailedEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.FailedEvent
Create an instance of the event.
FileAbortEvent(R, boolean, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileAbortEvent
 
FileBuffer - Class in com.vaadin.flow.component.upload.receivers
Basic in file receiver implementation.
FileBuffer() - Constructor for class com.vaadin.flow.component.upload.receivers.FileBuffer
 
FileData - Class in com.vaadin.flow.component.upload.receivers
Class containing file information for upload.
FileData(String, String, OutputStream) - Constructor for class com.vaadin.flow.component.upload.receivers.FileData
Create a FileData instance for a file.
FileFactory - Interface in com.vaadin.flow.component.upload.receivers
File factory interface for generating file to store the uploaded data into.
FileRejectedEvent - Class in com.vaadin.flow.component.upload
Sent when the file selected for upload doesn't meet the constraints specified on Upload
FileRejectedEvent(Upload, String) - Constructor for class com.vaadin.flow.component.upload.FileRejectedEvent
Creates a new event using the given source and indicator whether the event originated from the client side or the server side.
FileRejectEvent(R, boolean, JsonObject, JsonObject, String) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FileRejectEvent
 
FileRemoveEvent(R, boolean, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRemoveEvent
 
FileRetryEvent(R, boolean, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRetryEvent
 
FilesChangeEvent(R, boolean) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FilesChangeEvent
 
FileStartEvent(R, boolean, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileStartEvent
 
FinishedEvent - Class in com.vaadin.flow.component.upload
FinishedEvent is sent when the upload receives a file, regardless of whether the reception was successful or failed.
FinishedEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.FinishedEvent
Create an instance of the event.
fireUpdateProgress(long, long) - Method in class com.vaadin.flow.component.upload.Upload
Emit the progress event.

G

GeneratedVaadinUpload<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
Description copied from corresponding location in WebComponent:
GeneratedVaadinUpload() - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload
 
GeneratedVaadinUpload.FileRejectEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.FilesChangeEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.MaxFilesReachedChangeEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadAbortEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadBeforeEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadErrorEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadProgressEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadRequestEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadResponseEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadRetryEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadStartEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUpload.UploadSuccessEvent<R extends GeneratedVaadinUpload<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUploadFile<R extends GeneratedVaadinUploadFile<R>> - Class in com.vaadin.flow.component.upload
Description copied from corresponding location in WebComponent:
GeneratedVaadinUploadFile() - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
 
GeneratedVaadinUploadFile.FileAbortEvent<R extends GeneratedVaadinUploadFile<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUploadFile.FileRemoveEvent<R extends GeneratedVaadinUploadFile<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUploadFile.FileRetryEvent<R extends GeneratedVaadinUploadFile<R>> - Class in com.vaadin.flow.component.upload
 
GeneratedVaadinUploadFile.FileStartEvent<R extends GeneratedVaadinUploadFile<R>> - Class in com.vaadin.flow.component.upload
 
getAcceptedFileTypes() - Method in class com.vaadin.flow.component.upload.Upload
Get the list of accepted file types for upload.
getAcceptString() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getAddFiles() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get add files translations.
getCancel() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get cancel translation.
getCaptureString() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getConnecting() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Get connecting translation.
getContentLength() - Method in class com.vaadin.flow.component.upload.FailedEvent
Get the number of uploaded bytes.
getContentLength() - Method in class com.vaadin.flow.component.upload.FinishedEvent
Get the length of the file.
getContentLength() - Method in class com.vaadin.flow.component.upload.ProgressUpdateEvent
Get total file size.
getContentLength() - Method in class com.vaadin.flow.component.upload.StartedEvent
Get the length of the file.
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FileRejectEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadAbortEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadBeforeEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadErrorEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadProgressEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRequestEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadResponseEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRetryEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadStartEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadSuccessEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileAbortEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRemoveEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRetryEvent
 
getDetail() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileStartEvent
 
getDetailError() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FileRejectEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FileRejectEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadAbortEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadBeforeEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadErrorEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadProgressEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRequestEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadResponseEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRetryEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadStartEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadSuccessEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileAbortEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRemoveEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileRetryEvent
 
getDetailFile() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile.FileStartEvent
 
getDetailFileUploadTarget() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadBeforeEvent
 
getDetailFormData() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRequestEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadAbortEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadBeforeEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadErrorEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadProgressEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRequestEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadResponseEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRetryEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadStartEvent
 
getDetailXhr() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadSuccessEvent
 
getDropFiles() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get drop translation.
getDropLabel() - Method in class com.vaadin.flow.component.upload.Upload
Get the component set as the drop label, if any.
getDropLabelIcon() - Method in class com.vaadin.flow.component.upload.Upload
Get the component set as the drop label icon, if any.
getError() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get error translations.
getError() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Get upload error translations.
getErrorMessage() - Method in class com.vaadin.flow.component.upload.FileRejectedEvent
Get the error message
getFileData() - Method in class com.vaadin.flow.component.upload.receivers.FileBuffer
Get the file data object.
getFileData() - Method in class com.vaadin.flow.component.upload.receivers.MemoryBuffer
Get the file data object.
getFileData(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
Get file data for upload with file name.
getFileData(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
Get file data for upload with file name.
getFileDescriptor() - Method in class com.vaadin.flow.component.upload.receivers.FileBuffer
Get the output stream for file.
getFileDescriptor(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
Get the output stream for file.
getFileIsTooBig() - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Get translation for file too big.
getFileJsonObject() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
This property is not synchronized automatically from the client side, so the returned value may not be the same as in client side.
getFileName() - Method in class com.vaadin.flow.component.upload.FinishedEvent
Get the file name.
getFileName() - Method in class com.vaadin.flow.component.upload.receivers.FileBuffer
Get the file name for this buffer.
getFileName() - Method in class com.vaadin.flow.component.upload.receivers.FileData
Return the name of this file.
getFileName() - Method in class com.vaadin.flow.component.upload.receivers.MemoryBuffer
Get the file name for this buffer.
getFileName() - Method in class com.vaadin.flow.component.upload.StartedEvent
Get the file name.
getFiles() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.FilesChangeEvent
 
getFiles() - Method in class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
Get the files stored for this buffer.
getFiles() - Method in class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
Get the files in memory for this buffer.
getFilesJsonArray() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getForbidden() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
getFormDataNameString() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getHeadersJsonObject() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getHeld() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Get held translation.
getI18n() - Method in class com.vaadin.flow.component.upload.Upload
Get the internationalization object previously set for this component.
getI18nJsonObject() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getIncorrectFileType() - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Get translation for incorrect file type.
getInputStream() - Method in class com.vaadin.flow.component.upload.receivers.FileBuffer
Get the input stream for file.
getInputStream() - Method in class com.vaadin.flow.component.upload.receivers.MemoryBuffer
Get the input stream for file with filename.
getInputStream(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
Get the input stream for file with fileName.
getInputStream(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
Get the input stream for file with filename.
getLogger() - Method in class com.vaadin.flow.component.upload.receivers.AbstractFileBuffer
 
getMany() - Method in class com.vaadin.flow.component.upload.UploadI18N.SingleMulti
 
getMaxFiles() - Method in class com.vaadin.flow.component.upload.Upload
Get the maximum number of files allowed for the user to select to upload.
getMaxFilesDouble() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getMaxFileSize() - Method in class com.vaadin.flow.component.upload.Upload
Get the maximum allowed file size in the client-side, in bytes.
getMaxFileSizeDouble() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getMethodString() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getMIMEType() - Method in class com.vaadin.flow.component.upload.FinishedEvent
Get the MIME Type of the file.
getMimeType() - Method in class com.vaadin.flow.component.upload.receivers.FileData
Return the mimeType of this file.
getMIMEType() - Method in class com.vaadin.flow.component.upload.StartedEvent
Get the MIME type of the file.
getOne() - Method in class com.vaadin.flow.component.upload.UploadI18N.SingleMulti
Get translation for single upload.
getOutputBuffer() - Method in class com.vaadin.flow.component.upload.receivers.FileData
Return the output buffer for this file data.
getOutputBuffer(String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
Get the output stream for file.
getPrefix() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.RemainingTime
Get prefix translation.
getProcessing() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Get processing translation.
getReadBytes() - Method in class com.vaadin.flow.component.upload.ProgressUpdateEvent
Get bytes transferred for this update.
getReason() - Method in class com.vaadin.flow.component.upload.FailedEvent
Get the exception that caused the failure.
getReceiver() - Method in class com.vaadin.flow.component.upload.Upload
Return the current receiver.
getRemainingTime() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Get remaining time translations.
getServerUnavailable() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
getSize() - Method in class com.vaadin.flow.component.upload.UploadI18N.Units
get units size list
getStalled() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Get stalled translation.
getStatus() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Get status translations.
getTargetString() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getTimeoutDouble() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
getTooManyFiles() - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Too many files translation.
getUnexpectedServerError() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
getUnits() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get unit translations.
getUnknown() - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.RemainingTime
Get unknown translation.
getUpload() - Method in class com.vaadin.flow.component.upload.FinishedEvent
Upload where the event occurred.
getUpload() - Method in class com.vaadin.flow.component.upload.ProgressUpdateEvent
Upload where the event occurred.
getUpload() - Method in class com.vaadin.flow.component.upload.StartedEvent
Upload where the event occurred.
getUploadButton() - Method in class com.vaadin.flow.component.upload.Upload
Get the component set as the upload button for the upload, if any.
getUploading() - Method in class com.vaadin.flow.component.upload.UploadI18N
Get uploading translations.

I

interruptUpload() - Method in class com.vaadin.flow.component.upload.Upload
Interrupt the upload currently being received.
isAutoUpload() - Method in class com.vaadin.flow.component.upload.Upload
Get the auto upload status.
isDropAllowed() - Method in class com.vaadin.flow.component.upload.Upload
Get whether file dropping is allowed or not.
isMaxFilesReached() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload.MaxFilesReachedChangeEvent
 
isMaxFilesReachedBoolean() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
isNoAutoBoolean() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
isNodropBoolean() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
isUploading() - Method in class com.vaadin.flow.component.upload.Upload
Is upload in progress.
isWithCredentialsBoolean() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:

M

MaxFilesReachedChangeEvent(R, boolean) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.MaxFilesReachedChangeEvent
 
MemoryBuffer - Class in com.vaadin.flow.component.upload.receivers
Basic in memory file receiver implementation.
MemoryBuffer() - Constructor for class com.vaadin.flow.component.upload.receivers.MemoryBuffer
 
MultiFileBuffer - Class in com.vaadin.flow.component.upload.receivers
Basic receiver implementation for receiving multiple file upload and storing them as files.
MultiFileBuffer() - Constructor for class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
 
MultiFileMemoryBuffer - Class in com.vaadin.flow.component.upload.receivers
Basic multi file in memory file receiver implementation.
MultiFileMemoryBuffer() - Constructor for class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
 
MultiFileReceiver - Interface in com.vaadin.flow.component.upload
Interface that must be implemented by the upload receivers to provide the Upload component an output stream to write the uploaded data.

N

NoInputStreamEvent - Class in com.vaadin.flow.component.upload
FailedEvent that indicates that an input stream could not be obtained.
NoInputStreamEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.NoInputStreamEvent
Create an instance of the event.
NoOutputStreamEvent - Class in com.vaadin.flow.component.upload
FailedEvent that indicates that an output stream could not be obtained.
NoOutputStreamEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.NoOutputStreamEvent
Create an instance of the event.

P

ProgressListener - Interface in com.vaadin.flow.component.upload
ProgressListener receives events to track progress of upload.
ProgressUpdateEvent - Class in com.vaadin.flow.component.upload
ProgressUpdateEvent is sent to track progress of upload.
ProgressUpdateEvent(Upload, long, long) - Constructor for class com.vaadin.flow.component.upload.ProgressUpdateEvent
Event constructor method to construct a new progress event.

R

Receiver - Interface in com.vaadin.flow.component.upload
Interface that must be implemented by the upload receivers to provide the Upload component an output stream to write the uploaded data.
receiveUpload(String, String) - Method in interface com.vaadin.flow.component.upload.Receiver
Invoked when a new upload arrives.
receiveUpload(String, String) - Method in class com.vaadin.flow.component.upload.receivers.FileBuffer
 
receiveUpload(String, String) - Method in class com.vaadin.flow.component.upload.receivers.MemoryBuffer
 
receiveUpload(String, String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileBuffer
 
receiveUpload(String, String) - Method in class com.vaadin.flow.component.upload.receivers.MultiFileMemoryBuffer
 
RemainingTime() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Uploading.RemainingTime
 
remove(Component...) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Removes the given child components from this component.
removeAll() - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Removes all contents from this component, this includes child components, text content as well as child elements that have been added directly to this component using the Element API.

S

setAccept(String) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setAcceptedFileTypes(String...) - Method in class com.vaadin.flow.component.upload.Upload
Specify the types of files that the server accepts.
setAddFiles(UploadI18N.AddFiles) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set add files translations.
setAutoUpload(boolean) - Method in class com.vaadin.flow.component.upload.Upload
When false, it prevents uploads from triggering immediately upon adding file(s).
setCancel(String) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set cancel translation.
setCapture(String) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setConnecting(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Set connecting translation.
setDropAllowed(boolean) - Method in class com.vaadin.flow.component.upload.Upload
Define whether the element supports dropping files on it for uploading.
setDropFiles(UploadI18N.DropFiles) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set drop translation.
setDropLabel(Component) - Method in class com.vaadin.flow.component.upload.Upload
Set the component to show as a message to the user to drop files in the upload component.
setDropLabelIcon(Component) - Method in class com.vaadin.flow.component.upload.Upload
Set the component to show as the drop label icon.
setError(UploadI18N.Error) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set error translations.
setError(UploadI18N.Uploading.Error) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Set upload error translations.
setFile(JsonObject) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUploadFile
 
setFileIsTooBig(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Set file too big translation.
setFiles(JsonArray) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setForbidden(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
setFormDataName(String) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setHeaders(JsonObject) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setHeld(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Set held translation.
setI18n(JsonObject) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setI18n(UploadI18N) - Method in class com.vaadin.flow.component.upload.Upload
Set the internationalization properties for this component.
setIncorrectFileType(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Set incorrect file type translation.
setMany(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.AddFiles
 
setMany(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.DropFiles
 
setMany(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.SingleMulti
 
setMaxFiles(double) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setMaxFiles(int) - Method in class com.vaadin.flow.component.upload.Upload
Limit of files to upload, by default it is unlimited.
setMaxFileSize(double) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setMaxFileSize(int) - Method in class com.vaadin.flow.component.upload.Upload
Specify the maximum file size in bytes allowed to upload.
setMethod(String) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setNoAuto(boolean) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setNodrop(boolean) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setOne(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.AddFiles
 
setOne(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.DropFiles
 
setOne(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.SingleMulti
Set translation for single upload.
setPrefix(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.RemainingTime
Set prefix translation.
setProcessing(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Set processing translation.
setReceiver(Receiver) - Method in class com.vaadin.flow.component.upload.Upload
Set the receiver implementation that should be used for this upload component.
setRemainingTime(UploadI18N.Uploading.RemainingTime) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Set remaining time translations.
setServerUnavailable(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
setSize(List<String>) - Method in class com.vaadin.flow.component.upload.UploadI18N.Units
units size list: ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"]
setStalled(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
Set stalled translation.
setStatus(UploadI18N.Uploading.Status) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading
Set status translations.
setTarget(String) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setTimeout(double) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
setTooManyFiles(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Error
Set too many files error translation.
setUnexpectedServerError(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.Error
 
setUnits(List<String>) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set unit translations.
setUnits(UploadI18N.Units) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set unit translations.
setUnknown(String) - Method in class com.vaadin.flow.component.upload.UploadI18N.Uploading.RemainingTime
Set unknown translation.
setUploadButton(Component) - Method in class com.vaadin.flow.component.upload.Upload
Set the component as the actionable button inside the upload component, that opens the dialog for choosing the files to be upload.
setUploading(UploadI18N.Uploading) - Method in class com.vaadin.flow.component.upload.UploadI18N
Set uploading translations.
setWithCredentials(boolean) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
SingleMulti() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.SingleMulti
 
StartedEvent - Class in com.vaadin.flow.component.upload
StartedEvent event is sent when the upload is started to received.
StartedEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.StartedEvent
Create an instance of the event.
Status() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Uploading.Status
 
SucceededEvent - Class in com.vaadin.flow.component.upload
SucceededEvent event is sent when the upload is received successfully.
SucceededEvent(Upload, String, String, long) - Constructor for class com.vaadin.flow.component.upload.SucceededEvent
Create an instance of the event.

U

Units() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Units
unit translations with default size: size = Arrays.asList("B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB");
Units(List<String>) - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Units
 
updateProgress(long, long) - Method in interface com.vaadin.flow.component.upload.ProgressListener
Updates progress to listener.
Upload - Class in com.vaadin.flow.component.upload
Server-side component for the vaadin-upload element.
Upload() - Constructor for class com.vaadin.flow.component.upload.Upload
Create a new instance of Upload.
Upload(Receiver) - Constructor for class com.vaadin.flow.component.upload.Upload
Create a new instance of Upload with the given receiver.
UploadAbortEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadAbortEvent
 
UploadBeforeEvent(R, boolean, JsonObject, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadBeforeEvent
 
UploadErrorEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadErrorEvent
 
uploadFiles(JsonObject) - Method in class com.vaadin.flow.component.upload.GeneratedVaadinUpload
Description copied from corresponding location in WebComponent:
UploadI18N - Class in com.vaadin.flow.component.upload
The I18N helper file for the upload component.
UploadI18N() - Constructor for class com.vaadin.flow.component.upload.UploadI18N
 
UploadI18N.AddFiles - Class in com.vaadin.flow.component.upload
Translations for adding files.
UploadI18N.DropFiles - Class in com.vaadin.flow.component.upload
Translations for dropping files.
UploadI18N.Error - Class in com.vaadin.flow.component.upload
Exception translations.
UploadI18N.SingleMulti - Class in com.vaadin.flow.component.upload
Abstract translation class for single and multi mode translations.
UploadI18N.Units - Class in com.vaadin.flow.component.upload
unit translations.
UploadI18N.Uploading - Class in com.vaadin.flow.component.upload
Upload time translation strings.
UploadI18N.Uploading.Error - Class in com.vaadin.flow.component.upload
Communication error translations.
UploadI18N.Uploading.RemainingTime - Class in com.vaadin.flow.component.upload
Time remaining translations.
UploadI18N.Uploading.Status - Class in com.vaadin.flow.component.upload
Upload status strings.
Uploading() - Constructor for class com.vaadin.flow.component.upload.UploadI18N.Uploading
 
UploadProgressEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadProgressEvent
 
UploadRequestEvent(R, boolean, JsonObject, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRequestEvent
 
UploadResponseEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadResponseEvent
 
UploadRetryEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadRetryEvent
 
UploadStartEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadStartEvent
 
UploadSuccessEvent(R, boolean, JsonObject, JsonObject, JsonObject) - Constructor for class com.vaadin.flow.component.upload.GeneratedVaadinUpload.UploadSuccessEvent
 
A C D E F G I M N P R S U 
Skip navigation links

Copyright © 2020 Vaadin Ltd. All rights reserved.