public enum NotificationCode extends java.lang.Enum<NotificationCode>
NotificationCode enum represents the defined types of codes that can be contained in a NotificationI.| Enum Constant and Description |
|---|
ForceLogOff
Indicates that the user has been force logged out by a supervisor.
|
ForceNotReady
Indicates that the user has been forced into the not ready state by a supervisor.
|
ForceReady
Indicates that the user has been forced into the ready state by a supervisor.
|
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static NotificationCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationCode ForceLogOff
public static final NotificationCode ForceReady
public static final NotificationCode ForceNotReady
public static final NotificationCode Unknown
public static NotificationCode[] values()
for (NotificationCode c : NotificationCode.values()) System.out.println(c);
public static NotificationCode 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