Enum Enums.UploadStatus
- All Implemented Interfaces:
Serializable
,Comparable<Enums.UploadStatus>
,java.lang.constant.Constable
- Enclosing class:
- Enums
public static enum Enums.UploadStatus extends Enum<Enums.UploadStatus>
UploadStatus Enum
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AfterConversionBeforeSubmit
Conversion is completed, submit pendingAlreadyExists
Document already existsAlreadyExistsUnsealed
Already exists unsealedCanceled
Upload cancelledCantUpdateWithOtherSealed
Can update with other sealedCompleted
Upload completedContentEmpty
File content emptyConversionFailed
Conversion dailedConverting
Currently convertingDocumentAlreadySealed
Document already sealedDocumentDoesntExist
Document doesn't existDocumentNotInCorrectRoom
Document not in correct roomExternalRepositoryError
External repository errorFileLocked
File is lockedFolderDoesntExist
Folder doesn't existNetworkError
Network errorNoPermissions
No permissionsNoSecureTransfer
No secure transferPolicyError
Policy errorReady
ReadyRejectedByDLP
Rejected by DLPRemoved
RemovedSealedDocumentDoesntExist
Sealed document doesn't existSealedWithWrongKey
Sealed with the wrong keySubmitFailed
Submit failedTransientPathDoesntExist
Transient path doesn't existUnknown
Status is unknownUpdatingPermissions
Updating permissionsUploading
Currently uploadingWSDoesntExist
Workspace doesn't exist -
Method Summary
Modifier and Type Method Description static Enums.UploadStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.UploadStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Unknown
Status is unknown -
ConversionFailed
Conversion dailed -
AfterConversionBeforeSubmit
Conversion is completed, submit pending -
Completed
Upload completed -
NetworkError
Network error -
Uploading
Currently uploading -
Converting
Currently converting -
UpdatingPermissions
Updating permissions -
Ready
Ready -
Canceled
Upload cancelled -
Removed
Removed -
AlreadyExists
Document already exists -
SubmitFailed
Submit failed -
NoPermissions
No permissions -
WSDoesntExist
Workspace doesn't exist -
DocumentNotInCorrectRoom
Document not in correct room -
SealedWithWrongKey
Sealed with the wrong key -
FileLocked
File is locked -
ContentEmpty
File content empty -
NoSecureTransfer
No secure transfer -
AlreadyExistsUnsealed
Already exists unsealed -
ExternalRepositoryError
External repository error -
PolicyError
Policy error -
RejectedByDLP
Rejected by DLP -
FolderDoesntExist
Folder doesn't exist -
SealedDocumentDoesntExist
Sealed document doesn't exist -
TransientPathDoesntExist
Transient path doesn't exist -
DocumentAlreadySealed
Document already sealed -
DocumentDoesntExist
Document doesn't exist -
CantUpdateWithOtherSealed
Can update with other sealed
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-