Overview
//trimblecloud-fileservice/trimblecloud.fileservice.models/FileStatus
FileStatus
[JVM]
enum FileStatus
The status of the file upload. Possible values are ‘UPLOADABLE’, ‘PENDING’, ‘UPLOADED’, or ‘UNKNOWN’. If ‘UPLOADABLE’ is specified, the file is ready to be uploaded. If ‘PENDING’ is specified, the file is being uploaded. If ‘UPLOADED’ is specified, the file has been uploaded successfully. If ‘FAILED’ is specified, the file upload failed. If ‘UNKNOWN’ is specified, the status of the file upload is unknown.
Entries
| UPLOADABLE | [JVM] UPLOADABLE |
| PENDING | [JVM] PENDING |
| UPLOADED | [JVM] UPLOADED |
| FAILED | [JVM] FAILED |
| UNKNOWN | [JVM] UNKNOWN |
Functions
| Name | Summary |
|---|---|
| valueOf | [JVM] open fun valueOf(name: String): FileStatus 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<FileStatus> 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. |