Uses of Enum Class
com.vaadin.flow.component.notification.Notification.Position
Packages that use Notification.Position
-
Uses of Notification.Position in com.vaadin.flow.component.notification
Methods in com.vaadin.flow.component.notification that return Notification.PositionModifier and TypeMethodDescriptionNotification.getPosition()
Description copied from corresponding location in WebComponent:static Notification.Position
Returns the enum constant of this class with the specified name.static Notification.Position[]
Notification.Position.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.vaadin.flow.component.notification with parameters of type Notification.PositionModifier and TypeMethodDescriptionvoid
Notification.setPosition
(Notification.Position position) Set position of the notification.static Notification
Notification.show
(String text, int duration, Notification.Position position) Shows a notification in the current page with given text, duration and position.static Notification
Notification.show
(String text, int duration, Notification.Position position, boolean assertive) Shows a notification in the current page with given text, duration, position and assertive state.Constructors in com.vaadin.flow.component.notification with parameters of type Notification.PositionModifierConstructorDescriptionNotification
(String text, int duration, Notification.Position position) Creates a Notification with given text String, duration and positionNotification
(String text, int duration, Notification.Position position, boolean assertive) Creates a Notification with given text String, duration, position and assertive state.