Enum Class AccessLevel

java.lang.Object
java.lang.Enum<AccessLevel>
com.dropbox.core.v2.sharing.AccessLevel
All Implemented Interfaces:
Serializable, Comparable<AccessLevel>, Constable

public enum AccessLevel extends Enum<AccessLevel>
Defines the access levels for collaborators.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    For internal use only.

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The collaborator can both view and edit the shared folder.
    If there is a Righteous Link on the folder which grants access and the user has visited such link, they are allowed to perform certain action (i.e.
    Catch-all used for unknown tag values returned by the Dropbox servers.
    The collaborator is the owner of the shared folder.
    The collaborator can only view the shared folder that they have access to.
    The collaborator can only view the shared folder.
    The collaborator can only view the shared folder and does not have any access to comments.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    static AccessLevel[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • OWNER

      public static final AccessLevel OWNER
      The collaborator is the owner of the shared folder. Owners can view and edit the shared folder as well as set the folder's policies using DbxUserSharingRequests.updateFolderPolicy(String).
    • EDITOR

      public static final AccessLevel EDITOR
      The collaborator can both view and edit the shared folder.
    • VIEWER

      public static final AccessLevel VIEWER
      The collaborator can only view the shared folder.
    • VIEWER_NO_COMMENT

      public static final AccessLevel VIEWER_NO_COMMENT
      The collaborator can only view the shared folder and does not have any access to comments.
    • TRAVERSE

      public static final AccessLevel TRAVERSE
      The collaborator can only view the shared folder that they have access to.
    • NO_ACCESS

      public static final AccessLevel NO_ACCESS
      If there is a Righteous Link on the folder which grants access and the user has visited such link, they are allowed to perform certain action (i.e. add themselves to the folder) via the link access even though the user themselves are not a member on the shared folder yet.
    • OTHER

      public static final AccessLevel 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.

  • Method Details

    • values

      public static AccessLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AccessLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null