public static enum GUIConstants.Msg extends 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 |
---|---|
Icon |
large
Large icon.
|
Icon |
small
Small icon.
|
Modifier and Type | Method and Description |
---|---|
static GUIConstants.Msg |
valueOf(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 static GUIConstants.Msg[] values()
for (GUIConstants.Msg c : GUIConstants.Msg.values()) System.out.println(c);
public static GUIConstants.Msg 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 © 2005–2015 BaseX Team. All rights reserved.