public enum MessageType extends java.lang.Enum<MessageType>
NativeCallbacks.messageCallback(java.lang.String, java.lang.String, int, java.lang.Object, java.lang.Object).| Enum Constant and Description |
|---|
CRITICAL
Critical or emergency condition requiring the user's attention.
|
ERROR
Error Message.
|
INFO
Informational messages for the user.
|
PROMPT
Prompt to user to take offline action.
|
PROTOCOL
These are protocol messages; not to be displayed on the UI.
|
WARNING
Warning message.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageType PROMPT
public static final MessageType INFO
public static final MessageType ERROR
public static final MessageType WARNING
public static final MessageType CRITICAL
public static final MessageType PROTOCOL
public static MessageType[] values()
for (MessageType c : MessageType.values()) System.out.println(c);
public static MessageType 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