public static enum GUIConstants.Msg extends java.lang.Enum<GUIConstants.Msg>
| Enum Constant and Description |
|---|
ERROR
Error message.
|
QUESTION
Question message.
|
SUCCESS
Success message.
|
WARN
Warning message.
|
YESNOCANCEL
Yes/no/cancel message.
|
| Modifier and Type | Field and Description |
|---|---|
javax.swing.Icon |
large
Large icon.
|
javax.swing.Icon |
small
Small icon.
|
| Modifier and Type | Method and Description |
|---|---|
static GUIConstants.Msg |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GUIConstants.Msg[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GUIConstants.Msg WARN
public static final GUIConstants.Msg ERROR
public static final GUIConstants.Msg SUCCESS
public static final GUIConstants.Msg QUESTION
public static final GUIConstants.Msg YESNOCANCEL
public final javax.swing.Icon small
public final javax.swing.Icon large
public static GUIConstants.Msg[] values()
for (GUIConstants.Msg c : GUIConstants.Msg.values()) System.out.println(c);
public static GUIConstants.Msg 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