public enum StatusBarMessageType extends Enum<StatusBarMessageType>
Enum Constant and Description |
---|
ABORT
The message type is abort.
|
ERROR
The message type is error.
|
INFORMATION
The message type is information.
|
SUCCESS
The message type is success.
|
WARNING
The message type is warning.
|
Modifier and Type | Method and Description |
---|---|
static StatusBarMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusBarMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusBarMessageType SUCCESS
public static final StatusBarMessageType WARNING
public static final StatusBarMessageType ERROR
public static final StatusBarMessageType ABORT
public static final StatusBarMessageType INFORMATION
public static StatusBarMessageType[] values()
for (StatusBarMessageType c : StatusBarMessageType.values()) System.out.println(c);
public static StatusBarMessageType 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 nullCopyright 2009-2012 Micro Focus. All Rights Reserved.