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