public static enum AddFolderMemberError.Tag extends Enum<AddFolderMemberError.Tag>
AddFolderMemberError
.Enum Constant and Description |
---|
ACCESS_ERROR
Unable to access shared folder.
|
BAD_MEMBER
AddFolderMemberArg.getMembers() contains a bad invitation
recipient. |
CANT_SHARE_OUTSIDE_TEAM
Your team policy does not allow sharing outside of the team.
|
EMAIL_UNVERIFIED
The current user's e-mail address is unverified.
|
INSUFFICIENT_PLAN
The current user's account doesn't support this action.
|
NO_PERMISSION
The current user does not have permission to perform this action.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox
servers.
|
RATE_LIMIT
The current user has hit the limit of invites they can send per day.
|
TEAM_FOLDER
This action cannot be performed on a team shared folder.
|
TOO_MANY_INVITEES
The current user is trying to share with too many people at once.
|
TOO_MANY_MEMBERS
The value is the member limit that was reached.
|
TOO_MANY_PENDING_INVITES
The value is the pending invite limit that was reached.
|
Modifier and Type | Method and Description |
---|---|
static AddFolderMemberError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddFolderMemberError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddFolderMemberError.Tag ACCESS_ERROR
public static final AddFolderMemberError.Tag EMAIL_UNVERIFIED
public static final AddFolderMemberError.Tag BAD_MEMBER
AddFolderMemberArg.getMembers()
contains a bad invitation
recipient.public static final AddFolderMemberError.Tag CANT_SHARE_OUTSIDE_TEAM
public static final AddFolderMemberError.Tag TOO_MANY_MEMBERS
public static final AddFolderMemberError.Tag TOO_MANY_PENDING_INVITES
public static final AddFolderMemberError.Tag RATE_LIMIT
public static final AddFolderMemberError.Tag TOO_MANY_INVITEES
public static final AddFolderMemberError.Tag INSUFFICIENT_PLAN
public static final AddFolderMemberError.Tag TEAM_FOLDER
public static final AddFolderMemberError.Tag NO_PERMISSION
public static final AddFolderMemberError.Tag 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 AddFolderMemberError.Tag[] values()
for (AddFolderMemberError.Tag c : AddFolderMemberError.Tag.values()) System.out.println(c);
public static AddFolderMemberError.Tag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null