Skip to content

Overview

//trimblecloud-fileservice/trimblecloud.fileservice.models/UploadStatus

UploadStatus

[JVM]
enum UploadStatus

The status of the upload operation. Possible values are ‘UPLOADABLE’, ‘RUNNING’, ‘COMPLETED’, ‘FAILED’, or ‘UNKNOWN’. If ‘UPLOADABLE’ is specified, the file is ready to be uploaded. If ‘RUNNING’ is specified, the file is being uploaded. If ‘COMPLETED’ is specified, the file has been uploaded successfully. If ‘FAILED’ is specified, the file upload has failed. If ‘UNKNOWN’ is specified, the status of the file upload is unknown.

Entries

UPLOADABLE[JVM]
UPLOADABLE
RUNNING[JVM]
RUNNING
COMPLETED[JVM]
COMPLETED
UNKNOWN[JVM]
UNKNOWN
FAILED[JVM]
FAILED

Functions

NameSummary
valueOf[JVM]
open fun valueOf(name: String): UploadStatus
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values[JVM]
open fun values(): Array<UploadStatus>
Returns an array containing the constants of this enum type, in the order they’re declared. This method may be used to iterate over the constants.