public enum EventScope extends Enum<EventScope>
| Enum Constant and Description |
|---|
APPLICATION
The event is application wide.
|
SESSION
The event is specific to the current (Vaadin) session.
|
UI
The event is specific to the current UI.
|
UNDEFINED
Undefined event scope.
|
VIEW
The event is specific to the current view.
|
| Modifier and Type | Method and Description |
|---|---|
static EventScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventScope APPLICATION
public static final EventScope SESSION
public static final EventScope UI
public static final EventScope VIEW
public static final EventScope UNDEFINED
EventBusListenerMethod.scope()public static EventScope[] values()
for (EventScope c : EventScope.values()) System.out.println(c);
public static EventScope 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 © 2017. All rights reserved.