Class LockFileError


  • public final class LockFileError
    extends java.lang.Object
    This class is an open tagged union. Tagged unions instances are always associated to a specific tag. This means only one of the isAbc() methods will return true. You can use tag() to determine the tag associated with this instance.

    Open unions may be extended in the future with additional tags. If a new tag is introduced that this SDK does not recognized, the OTHER value will be used.

    • Field Detail

      • TOO_MANY_WRITE_OPERATIONS

        public static final LockFileError TOO_MANY_WRITE_OPERATIONS
        There are too many write operations in user's Dropbox. Please retry this request.
      • TOO_MANY_FILES

        public static final LockFileError TOO_MANY_FILES
        There are too many files in one request. Please retry with fewer files.
      • NO_WRITE_PERMISSION

        public static final LockFileError NO_WRITE_PERMISSION
        The user does not have permissions to change the lock state or access the file.
      • CANNOT_BE_LOCKED

        public static final LockFileError CANNOT_BE_LOCKED
        Item is a type that cannot be locked.
      • FILE_NOT_SHARED

        public static final LockFileError FILE_NOT_SHARED
        Requested file is not currently shared.
      • INTERNAL_ERROR

        public static final LockFileError INTERNAL_ERROR
        Something went wrong with the job on Dropbox's end. You'll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.
      • OTHER

        public static final LockFileError OTHER
        Catch-all used for unknown tag values returned by the Dropbox servers.

        Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.