public enum MembersSetProfileError extends Enum<MembersSetProfileError>
| Enum Constant and Description | 
|---|
| EMAIL_RESERVED_FOR_OTHER_USEREmail is already reserved for another user. | 
| EXTERNAL_ID_AND_NEW_EXTERNAL_ID_UNSAFEIt is unsafe to use both external_id and new_external_id | 
| EXTERNAL_ID_USED_BY_OTHER_USERThe external ID is already in use by another team member. | 
| NO_NEW_DATA_SPECIFIEDNone of new_email, new_given_name, new_surname, or new_external_id are
 specified | 
| OTHERAn unspecified error. | 
| PARAM_CANNOT_BE_EMPTYParameter new_email cannot be empty. | 
| SET_PROFILE_DISALLOWEDSetting profile disallowed | 
| USER_NOT_FOUNDNo matching user found. | 
| USER_NOT_IN_TEAMThe user is not a member of the team. | 
| Modifier and Type | Method and Description | 
|---|---|
| static MembersSetProfileError | valueOf(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 OTHER
public static MembersSetProfileError[] values()
for (MembersSetProfileError c : MembersSetProfileError.values()) System.out.println(c);
public static MembersSetProfileError 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