public enum LinkAudience extends java.lang.Enum<LinkAudience>
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
LinkAudience.Serializer
For internal use only. 
 | 
| Enum Constant and Description | 
|---|
MEMBERS
Link is accessible only by members of the content. 
 | 
NO_ONE
The link can be used by no one. 
 | 
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers. 
 | 
PASSWORD
A link-specific password is required to access the link. 
 | 
PUBLIC
Link is accessible by anyone. 
 | 
TEAM
Link is accessible only by team members. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LinkAudience | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static LinkAudience[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LinkAudience PUBLIC
public static final LinkAudience TEAM
public static final LinkAudience NO_ONE
public static final LinkAudience PASSWORD
public static final LinkAudience MEMBERS
public static final LinkAudience OTHER
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.
public static LinkAudience[] values()
for (LinkAudience c : LinkAudience.values()) System.out.println(c);
public static LinkAudience valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null