Enum SplitLayoutVariant
- java.lang.Object
-
- java.lang.Enum<SplitLayoutVariant>
-
- com.vaadin.flow.component.splitlayout.SplitLayoutVariant
-
- All Implemented Interfaces:
Serializable,Comparable<SplitLayoutVariant>
public enum SplitLayoutVariant extends Enum<SplitLayoutVariant>
Set of theme variants applicable forvaadin-split-layoutcomponent.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LUMO_MINIMALLUMO_SMALL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetVariantName()Gets the variant name.static SplitLayoutVariantvalueOf(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
-
-