com.vaadin.flow.component.splitlayout.
Enum SplitLayoutVariant
- java.lang.Object
-
- java.lang.Enum<SplitLayoutVariant>
-
- com.vaadin.flow.component.splitlayout.SplitLayoutVariant
-
All Implemented Interfaces:
public enum SplitLayoutVariant extends Enum<SplitLayoutVariant>
Set of theme variants applicable for
vaadin-split-layout
component.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LUMO_MINIMAL
LUMO_SMALL
-
Method Summary
All Methods Modifier and Type Method Description String
getVariantName()
Gets the variant name.
static SplitLayoutVariant
valueOf​(String name)
Returns the enum constant of this type with the specified name.
static SplitLayoutVariant[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LUMO_SMALL
public static final SplitLayoutVariant LUMO_SMALL
-
LUMO_MINIMAL
public static final SplitLayoutVariant LUMO_MINIMAL
-
-
Method Detail
-
values
public static SplitLayoutVariant[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SplitLayoutVariant c : SplitLayoutVariant.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SplitLayoutVariant valueOf​(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getVariantName
public String getVariantName()
Gets the variant name.
Returns:
variant name
-
-