public enum EventResultType extends Enum<EventResultType>
| Enum Constant and Description |
|---|
ERROR
Show an error message.
|
INFO
Show an info message.
|
NONE
None message should be shown.
|
SUCCESS
Show a success message.
|
WARNING
Show a warning message.
|
| Modifier and Type | Method and Description |
|---|---|
static EventResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventResultType NONE
public static final EventResultType SUCCESS
public static final EventResultType INFO
public static final EventResultType WARNING
public static final EventResultType ERROR
public static EventResultType[] values()
for (EventResultType c : EventResultType.values()) System.out.println(c);
public static EventResultType 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–2017 Bridje Framework. All rights reserved.