public static enum ComponentState.MessageType extends Enum<ComponentState.MessageType>
| Enum Constant and Description |
|---|
FAILURE
Error message.
|
INFO
Information message.
|
SUCCESS
Success message.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentState.MessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentState.MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentState.MessageType FAILURE
public static final ComponentState.MessageType INFO
public static final ComponentState.MessageType SUCCESS
public static ComponentState.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 nullpublic static ComponentState.MessageType[] values()
for (ComponentState.MessageType c : ComponentState.MessageType.values()) System.out.println(c);
Copyright © 2010-2025 Qcadoo Limited