Package com.dropbox.core.v2.sharing
Enum RequestedVisibility
- java.lang.Object
-
- java.lang.Enum<RequestedVisibility>
-
- com.dropbox.core.v2.sharing.RequestedVisibility
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RequestedVisibility>
public enum RequestedVisibility extends java.lang.Enum<RequestedVisibility>
The access permission that can be requested by the caller for the shared link. Note that the final resolved visibility of the shared link takes into account other aspects, such as team and shared folder settings. Check theResolvedVisibility
for more info on the possible resolved visibility values of shared links.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RequestedVisibility
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RequestedVisibility[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLIC
public static final RequestedVisibility PUBLIC
Anyone who has received the link can access it. No login required.
-
TEAM_ONLY
public static final RequestedVisibility TEAM_ONLY
Only members of the same team can access the link. Login is required.
-
PASSWORD
public static final RequestedVisibility PASSWORD
A link-specific password is required to access the link. Login is not required.
-
-
Method Detail
-
values
public static RequestedVisibility[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RequestedVisibility c : RequestedVisibility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestedVisibility valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-