public static enum MessageBox.Type extends Enum<MessageBox.Type>
| Enum Constant and Description |
|---|
Error |
Information |
Warning |
| Modifier and Type | Method and Description |
|---|---|
static MessageBox.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageBox.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageBox.Type Information
public static final MessageBox.Type Warning
public static final MessageBox.Type Error
public static MessageBox.Type[] values()
for (MessageBox.Type c : MessageBox.Type.values()) System.out.println(c);
public static MessageBox.Type 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 © 2015 Uqbar Project. All rights reserved.