public static enum IMUser.IMUserStatus extends java.lang.Enum<IMUser.IMUserStatus>
Enum Constant and Description |
---|
AVAILABLE |
AWAY |
DONT_DISTURB |
IN_A_MEETING |
MOBILE |
OFFLINE |
UNKNOW |
Modifier and Type | Method and Description |
---|---|
static IMUser.IMUserStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMUser.IMUserStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMUser.IMUserStatus OFFLINE
public static final IMUser.IMUserStatus AVAILABLE
public static final IMUser.IMUserStatus AWAY
public static final IMUser.IMUserStatus DONT_DISTURB
public static final IMUser.IMUserStatus IN_A_MEETING
public static final IMUser.IMUserStatus MOBILE
public static final IMUser.IMUserStatus UNKNOW
public static IMUser.IMUserStatus[] values()
for (IMUser.IMUserStatus c : IMUser.IMUserStatus.values()) System.out.println(c);
public static IMUser.IMUserStatus 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