Package com.storedobject.vaadin
Enum Class ThemeStyle
- All Implemented Interfaces:
Serializable
,Comparable<ThemeStyle>
,Constable
A utility class to handle "theme" attribute of an
Element
.- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic void
add
(com.vaadin.flow.component.HasElement component, ThemeStyle... styles) Add theme styles.static void
add
(com.vaadin.flow.dom.Element element, ThemeStyle... styles) Add theme styles.static void
clear
(com.vaadin.flow.component.HasElement component) Remove all theme styles.static void
clear
(com.vaadin.flow.dom.Element element) Remove all theme styles.static void
remove
(com.vaadin.flow.component.HasElement component, ThemeStyle... styles) Remove theme styles.static void
remove
(com.vaadin.flow.dom.Element element, ThemeStyle... styles) Remove theme styles.static void
set
(com.vaadin.flow.component.HasElement component, ThemeStyle... styles) Set theme styles.static void
set
(com.vaadin.flow.dom.Element element, ThemeStyle... styles) Set theme styles.toString()
static ThemeStyle
Returns the enum constant of this class with the specified name.static ThemeStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
Success. -
ERROR
Error. -
PILL
Pill. -
CONTRAST
Contrast. -
SMALL
Small. -
PRIMARY
Primary. -
ICON
Icon. -
BADGE
Badge.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<ThemeStyle>
-
set
Set theme styles.- Parameters:
component
- Element to act uponstyles
- Theme styles to set
-
set
Set theme styles.- Parameters:
element
- Element to act uponstyles
- Theme styles to set
-
add
Add theme styles.- Parameters:
component
- Element to act uponstyles
- Theme styles to add
-
add
Add theme styles.- Parameters:
element
- Element to act uponstyles
- Theme styles to add
-
clear
public static void clear(com.vaadin.flow.component.HasElement component) Remove all theme styles.- Parameters:
component
- Element to act upon
-
clear
public static void clear(com.vaadin.flow.dom.Element element) Remove all theme styles.- Parameters:
element
- Element to act upon
-
remove
Remove theme styles.- Parameters:
component
- Element to act uponstyles
- Theme styles to remove
-
remove
Remove theme styles.- Parameters:
element
- Element to act uponstyles
- Theme styles to remove
-