Enum Class SideDialogPosition
- All Implemented Interfaces:
Serializable,Comparable<SideDialogPosition>,Constable
Represents the position of the side dialog relative to the application window.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe side dialog is placed at the bottom of the application window.The side dialog is placed at the end position depending on the directionality (RTL or LTR) of the layout.The side dialog is placed at the start position depending on the directionality (RTL or LTR) of the layout.The side dialog is placed to the left of the application window.The side dialog is placed to the right of the application window.The side dialog is placed at the top of the application window. -
Method Summary
Modifier and TypeMethodDescriptionstatic SideDialogPositionReturns the enum constant of this class with the specified name.static SideDialogPosition[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TOP
The side dialog is placed at the top of the application window. -
RIGHT
The side dialog is placed to the right of the application window. Does not consider RTL mode. -
BOTTOM
The side dialog is placed at the bottom of the application window. -
LEFT
The side dialog is placed to the left of the application window. Does not consider RTL mode. -
INLINE_START
The side dialog is placed at the start position depending on the directionality (RTL or LTR) of the layout. -
INLINE_END
The side dialog is placed at the end position depending on the directionality (RTL or LTR) of the layout.
-
-
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
-