Package com.dropbox.core.v2.sharing
Enum Class AccessLevel
- All Implemented Interfaces:
Serializable,Comparable<AccessLevel>,Constable
Defines the access levels for collaborators.
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe 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 TypeMethodDescriptionstatic AccessLevelReturns the enum constant of this class with the specified name.static AccessLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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 usingDbxUserSharingRequests.updateFolderPolicy(String). -
EDITOR
The collaborator can both view and edit the shared folder. -
VIEWER
The collaborator can only view the shared folder. -
VIEWER_NO_COMMENT
The collaborator can only view the shared folder and does not have any access to comments. -
TRAVERSE
The collaborator can only view the shared folder that they have access to. -
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
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
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
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 nameNullPointerException- if the argument is null
-