public static enum UserManager.UserJoinStatus extends java.lang.Enum<UserManager.UserJoinStatus>
Enum Constant and Description |
---|
USER_BELONGS
An ASSISTments Service user exists and is already a member of the current partner reference.
|
USER_DOES_NOT_BELONG
An ASSISTments Service user exists but is not a member of the current partner reference.
|
USER_NOT_FOUND
No ASSISTments Service user exists with the specified login name.
|
Modifier and Type | Method and Description |
---|---|
static UserManager.UserJoinStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserManager.UserJoinStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserManager.UserJoinStatus USER_NOT_FOUND
public static final UserManager.UserJoinStatus USER_BELONGS
public static final UserManager.UserJoinStatus USER_DOES_NOT_BELONG
public static UserManager.UserJoinStatus[] values()
for (UserManager.UserJoinStatus c : UserManager.UserJoinStatus.values()) System.out.println(c);
public static UserManager.UserJoinStatus 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