Uses of Class
com.googlecode.lanterna.gui2.GridLayout.Alignment
-
Packages that use GridLayout.Alignment Package Description com.googlecode.lanterna.gui2 -
-
Uses of GridLayout.Alignment in com.googlecode.lanterna.gui2
Fields in com.googlecode.lanterna.gui2 declared as GridLayout.Alignment Modifier and Type Field Description (package private) GridLayout.Alignment
GridLayout.GridLayoutData. horizontalAlignment
(package private) GridLayout.Alignment
GridLayout.GridLayoutData. verticalAlignment
Methods in com.googlecode.lanterna.gui2 that return GridLayout.Alignment Modifier and Type Method Description static GridLayout.Alignment
GridLayout.Alignment. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GridLayout.Alignment[]
GridLayout.Alignment. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.googlecode.lanterna.gui2 with parameters of type GridLayout.Alignment Modifier and Type Method Description static LayoutData
GridLayout. createLayoutData(GridLayout.Alignment horizontalAlignment, GridLayout.Alignment verticalAlignment)
Creates a layout data object forGridLayout
:s that specify the horizontal and vertical alignment for the component in case the cell space is larger than the preferred size of the componentstatic LayoutData
GridLayout. createLayoutData(GridLayout.Alignment horizontalAlignment, GridLayout.Alignment verticalAlignment, boolean grabExtraHorizontalSpace, boolean grabExtraVerticalSpace)
Creates a layout data object forGridLayout
:s that specify the horizontal and vertical alignment for the component in case the cell space is larger than the preferred size of the component.static LayoutData
GridLayout. createLayoutData(GridLayout.Alignment horizontalAlignment, GridLayout.Alignment verticalAlignment, boolean grabExtraHorizontalSpace, boolean grabExtraVerticalSpace, int horizontalSpan, int verticalSpan)
Creates a layout data object forGridLayout
:s that specify the horizontal and vertical alignment for the component in case the cell space is larger than the preferred size of the component.Constructors in com.googlecode.lanterna.gui2 with parameters of type GridLayout.Alignment Constructor Description GridLayoutData(GridLayout.Alignment horizontalAlignment, GridLayout.Alignment verticalAlignment, boolean grabExtraHorizontalSpace, boolean grabExtraVerticalSpace, int horizontalSpan, int verticalSpan)
-