Enum Class PositionScheme
- All Implemented Interfaces:
Serializable
,Comparable<PositionScheme>
,Constable
The layout mechanism determines how the widget positions itself relative to the parent or sibling widgets.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the numerical representation of this enum.static PositionScheme
Returns the enum constant of this class with the specified name.static PositionScheme[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Static
Static position scheme.The widget is layed-out with other
Static
andRelative
sibling widgets, one after another.Inline widgets are layed out in horizontal lines (like text), wrapping around at the end of the line to continue on the next line. Block widgets are stacked vertically.
Static widgets may also float to the left or right border, using setFloatSide().
-
Relative
Relative position scheme.The widget is first layed out according to Static layout rules, but after layout, the widget may be offset relative to where it would be in a static layout, using setOffsets().
Another common use of a Relative position scheme (even with no specified offsets) is to provide a new reference coordinate system for Absolutely positioned widgets.
-
Absolute
Absolute position scheme.The widget is positioned at an absolute position with respect to the nearest ancestor widget that is either:
- a
WTableCell
- or has a position scheme that is
Relative
orAbsolute
.
- a
-
Fixed
Fixed position scheme.The widget is positioned at fixed position with respect to the browser's view-pane.
-
-
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
-
getValue
public int getValue()Returns the numerical representation of this enum.
-