public static enum JebUI.IconType extends java.lang.Enum<JebUI.IconType>
This enumeration represents icon types to be used in dialog boxes.
| Enum Constant and Description |
|---|
ERROR
An error sign icon.
|
INFORMATION
An information sign icon.
|
QUESTION
A question-mark icon.
|
WARNING
A warning sign icon.
|
| Modifier and Type | Method and Description |
|---|---|
static JebUI.IconType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JebUI.IconType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JebUI.IconType QUESTION
A question-mark icon.
public static final JebUI.IconType INFORMATION
An information sign icon.
public static final JebUI.IconType WARNING
A warning sign icon.
public static final JebUI.IconType ERROR
An error sign icon.
public static JebUI.IconType[] values()
for (JebUI.IconType c : JebUI.IconType.values()) System.out.println(c);
public static JebUI.IconType 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