com.vaadin.flow.component.
Enum Direction
- java.lang.Object
-
- java.lang.Enum<Direction>
-
- com.vaadin.flow.component.Direction
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description LEFT_TO_RIGHT
RIGHT_TO_LEFT
-
Method Summary
All Methods Modifier and Type Method and Description String
getClientName()
Gets the value applied as the
dir
attribute in html fordocument
.static Direction
valueOf(String name)
Returns the enum constant of this type with the specified name.
static Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RIGHT_TO_LEFT
public static final Direction RIGHT_TO_LEFT
-
LEFT_TO_RIGHT
public static final Direction LEFT_TO_RIGHT
-
-
Method Detail
-
values
public static Direction[] 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 (Direction c : Direction.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Direction 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
-
getClientName
public String getClientName()
Gets the value applied as the
dir
attribute in html fordocument
.Returns:
the value applied as the "dir" attribute.
-
-