Interface TableLayoutConstants
- 
- All Known Implementing Classes:
- TableLayout,- TableLayoutConstraints
 
 public interface TableLayoutConstantsTableLayoutConstants define the constants used by all the TableLayout classes.
- 
- 
Field SummaryFields Modifier and Type Field Description static intBOTTOMIndicates that the component is bottom justified in its cellstatic intCENTERIndicates that the component is centered in its cellstatic doubleFILLIndicates that the row/column should fill the available spacestatic intFULLIndicates that the component is full justified in its cellstatic intLEADINGIndicates that the component is leading justified in its cell.static intLEFTIndicates that the component is left justified in its cellstatic doubleMINIMUMIndicates that the row/column should be allocated just enough space to accomidate the minimum size of all components contained completely within this row/column.static doublePREFERREDIndicates that the row/column should be allocated just enough space to accomidate the preferred size of all components contained completely within this row/column.static intRIGHTIndicates that the component is right justified in its cellstatic intTOPIndicates that the component is top justified in its cellstatic intTRAILINGIndicates that the component is trailing justified in its cell.
 
- 
- 
- 
Field Detail- 
LEFTstatic final int LEFT Indicates that the component is left justified in its cell- See Also:
- Constant Field Values
 
 - 
TOPstatic final int TOP Indicates that the component is top justified in its cell- See Also:
- Constant Field Values
 
 - 
CENTERstatic final int CENTER Indicates that the component is centered in its cell- See Also:
- Constant Field Values
 
 - 
FULLstatic final int FULL Indicates that the component is full justified in its cell- See Also:
- Constant Field Values
 
 - 
BOTTOMstatic final int BOTTOM Indicates that the component is bottom justified in its cell- See Also:
- Constant Field Values
 
 - 
RIGHTstatic final int RIGHT Indicates that the component is right justified in its cell- See Also:
- Constant Field Values
 
 - 
LEADINGstatic final int LEADING Indicates that the component is leading justified in its cell. Leading justification means components are left justified if their container is left-oriented and right justified if their container is right-oriented. Trailing justification is opposite. see java.awt.Component#getComponentOrientation- See Also:
- Constant Field Values
 
 - 
TRAILINGstatic final int TRAILING Indicates that the component is trailing justified in its cell. Trailing justification means components are right justified if their container is left-oriented and left justified if their container is right-oriented. Leading justification is opposite. see java.awt.Component#getComponentOrientation- See Also:
- Constant Field Values
 
 - 
FILLstatic final double FILL Indicates that the row/column should fill the available space- See Also:
- Constant Field Values
 
 - 
PREFERREDstatic final double PREFERRED Indicates that the row/column should be allocated just enough space to accomidate the preferred size of all components contained completely within this row/column.- See Also:
- Constant Field Values
 
 - 
MINIMUMstatic final double MINIMUM Indicates that the row/column should be allocated just enough space to accomidate the minimum size of all components contained completely within this row/column.- See Also:
- Constant Field Values
 
 
- 
 
-