Uses of Class
com.vaadin.ui.Notification.Type
-
Packages that use Notification.Type Package Description com.vaadin.ui -
-
Uses of Notification.Type in com.vaadin.ui
Fields in com.vaadin.ui declared as Notification.Type Modifier and Type Field Description static Notification.TypeNotification. TYPE_ERROR_MESSAGEDeprecated.static Notification.TypeNotification. TYPE_HUMANIZED_MESSAGEDeprecated.static Notification.TypeNotification. TYPE_TRAY_NOTIFICATIONDeprecated.static Notification.TypeNotification. TYPE_WARNING_MESSAGEDeprecated.Methods in com.vaadin.ui that return Notification.Type Modifier and Type Method Description static Notification.TypeNotification.Type. valueOf(String name)Returns the enum constant of this type with the specified name.static Notification.Type[]Notification.Type. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.ui with parameters of type Notification.Type Modifier and Type Method Description StringNotificationConfiguration. getAssistivePostfix(Notification.Type type)Gets the accessibility postfix for a notification type.StringNotificationConfiguration. getAssistivePrefix(Notification.Type type)Gets the accessibility prefix for a notification type.NotificationRoleNotificationConfiguration. getAssistiveRole(Notification.Type type)Gets the WAI-ARIA role for a notification type.voidNotificationConfiguration. setAssistivePostfix(Notification.Type type, String postfix)Sets the accessibility postfix for a notification type.voidNotificationConfiguration. setAssistivePrefix(Notification.Type type, String prefix)Sets the accessibility prefix for a notification type.voidNotificationConfiguration. setAssistiveRole(Notification.Type type, NotificationRole role)Sets the WAI-ARIA role for a notification type.static voidNotification. show(String caption, Notification.Type type)Shows a notification message the current page.static voidNotification. show(String caption, String description, Notification.Type type)Shows a notification message the current page.voidUI. showNotification(String caption, Notification.Type type)Deprecated.As of 7.0, use Notification.show instead but be aware that Notification.show does not allow HTML.voidUI. showNotification(String caption, String description, Notification.Type type)Deprecated.As of 7.0, use new Notification(...).show(Page) instead but be aware that HTML by default not allowed.voidUI. showNotification(String caption, String description, Notification.Type type, boolean htmlContentAllowed)Deprecated.As of 7.0, use new Notification(...).show(Page).Constructors in com.vaadin.ui with parameters of type Notification.Type Constructor Description Notification(String caption, Notification.Type type)Creates a notification message of the specified type.Notification(String caption, String description, Notification.Type type)Creates a notification message of the specified type, with a bigger caption and smaller description.Notification(String caption, String description, Notification.Type type, boolean htmlContentAllowed)Creates a notification message of the specified type, with a bigger caption and smaller description.
-