
protected static enum ContainerView.MessageType extends Enum<ContainerView.MessageType>
| Enum Constant and Description |
|---|
CONFIRM |
ERROR |
INFORMATION |
QUESTION |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static ContainerView.MessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerView.MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerView.MessageType INFORMATION
public static final ContainerView.MessageType ERROR
public static final ContainerView.MessageType WARNING
public static final ContainerView.MessageType CONFIRM
public static final ContainerView.MessageType QUESTION
public static ContainerView.MessageType[] values()
for (ContainerView.MessageType c : ContainerView.MessageType.values()) System.out.println(c);
public static ContainerView.MessageType 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 (c) 2011-2014 Eike Stepper (Berlin, Germany) and others.