public enum MembersSetProfileError extends java.lang.Enum<MembersSetProfileError>
Enum Constant and Description |
---|
DIRECTORY_RESTRICTED_OFF
Directory Restrictions option is not available.
|
EMAIL_RESERVED_FOR_OTHER_USER
Email is already reserved for another user.
|
EXTERNAL_ID_AND_NEW_EXTERNAL_ID_UNSAFE
It is unsafe to use both external_id and new_external_id.
|
EXTERNAL_ID_USED_BY_OTHER_USER
The external ID is already in use by another team member.
|
NO_NEW_DATA_SPECIFIED
None of new_email, new_given_name, new_surname, or new_external_id are
specified.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
PARAM_CANNOT_BE_EMPTY
Parameter new_email cannot be empty.
|
PERSISTENT_ID_DISABLED
Persistent ID is only available to teams with persistent ID SAML
configuration.
|
PERSISTENT_ID_USED_BY_OTHER_USER
The persistent ID is already in use by another team member.
|
SET_PROFILE_DISALLOWED
Modifying deleted users is not allowed.
|
USER_NOT_FOUND
No matching user found.
|
USER_NOT_IN_TEAM
The user is not a member of the team.
|
Modifier and Type | Method and Description |
---|---|
static MembersSetProfileError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MembersSetProfileError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MembersSetProfileError USER_NOT_FOUND
public static final MembersSetProfileError USER_NOT_IN_TEAM
public static final MembersSetProfileError EXTERNAL_ID_AND_NEW_EXTERNAL_ID_UNSAFE
public static final MembersSetProfileError NO_NEW_DATA_SPECIFIED
public static final MembersSetProfileError EMAIL_RESERVED_FOR_OTHER_USER
public static final MembersSetProfileError EXTERNAL_ID_USED_BY_OTHER_USER
public static final MembersSetProfileError SET_PROFILE_DISALLOWED
public static final MembersSetProfileError PARAM_CANNOT_BE_EMPTY
public static final MembersSetProfileError PERSISTENT_ID_DISABLED
public static final MembersSetProfileError PERSISTENT_ID_USED_BY_OTHER_USER
public static final MembersSetProfileError DIRECTORY_RESTRICTED_OFF
public static final MembersSetProfileError 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 MembersSetProfileError[] values()
for (MembersSetProfileError c : MembersSetProfileError.values()) System.out.println(c);
public static MembersSetProfileError 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