Uses of Class
com.vladsch.flexmark.util.format.TableCell
-
Packages that use TableCell Package Description com.vladsch.flexmark.util.format -
-
Uses of TableCell in com.vladsch.flexmark.util.format
Fields in com.vladsch.flexmark.util.format declared as TableCell Modifier and Type Field Description static TableCell
TableCaptionSection. DEFAULT_CELL
static TableCell
TableCell. DEFAULT_CELL
static TableCell
TableSeparatorSection. DEFAULT_CELL
static TableCell
TableCell. NULL
static TableCell
TableCaptionSection. NULL_CELL
TableCell
TableCellOffsetInfo. tableCell
Fields in com.vladsch.flexmark.util.format with type parameters of type TableCell Modifier and Type Field Description protected java.util.List<TableCell>
TableRow. cells
Methods in com.vladsch.flexmark.util.format that return TableCell Modifier and Type Method Description TableCell
TableCaptionRow. defaultCell()
TableCell
TableCaptionSection. defaultCell()
TableCell
TableRow. defaultCell()
TableCell
TableSection. defaultCell()
TableCell
TableSeparatorRow. defaultCell()
TableCell
TableSeparatorSection. defaultCell()
TableCell
MarkdownTable. getCaptionCell()
TableCell
TableCellOffsetInfo. getPreviousCell()
TableCell
TableCellOffsetInfo. getPreviousCell(int offset)
TableCell
TableCellOffsetInfo. getPreviousCell(TableRow tableRow, int offset)
TableCell
TableCell. withAfterSpace(boolean afterSpace)
TableCell
TableCell. withAlignment(CellAlignment alignment)
TableCell
TableCell. withColumnSpan(int columnSpan)
TableCell
TableCell. withRowSpan(int rowSpan)
TableCell
TableCell. withSpanTrackedOffset(int spanTrackedOffset)
TableCell
TableCell. withText(java.lang.CharSequence text)
TableCell
TableCell. withText(java.lang.CharSequence openMarker, java.lang.CharSequence text, java.lang.CharSequence closeMarker)
TableCell
TableCell. withTrackedOffset(int trackedTextOffset)
TableCell
TableCell. withTrackedOffset(int trackedTextOffset, boolean afterSpace, boolean afterDelete)
TableCell
TableCell. withTrackedTextAdjust(int trackedTextAdjust)
Methods in com.vladsch.flexmark.util.format that return types with arguments of type TableCell Modifier and Type Method Description java.util.List<TableCell>
TableRow. getCells()
Methods in com.vladsch.flexmark.util.format with parameters of type TableCell Modifier and Type Method Description void
TableCellConsumer. accept(TableCell cell, int cellIndex, int cellColumn)
loop over table row cellsvoid
MarkdownTable. addCell(@NotNull TableCell cell)
void
TableRow. appendColumns(int count, TableCell tableCell)
int
TableCellManipulator. apply(TableCell cell, int cellIndex, int cellColumn, int allCellIndex)
loop over table row cellsTableRow
TableRow. expandTo(int column, TableCell cell)
TableRow
TableSection. expandTo(int row, int column, TableCell cell)
TableRow
TableSection. expandTo(int row, TableCell cell)
int
TableCell. getCellLength(TableCell previousCell)
Returns the cell length occupied in the tableint
TableCell. getCellPrefixLength(TableCell previousCell)
Returns the cell prefix length occupied in the tableint
TableCell. getCellSize(TableCell previousCell)
int
TableCell. getInsideStartOffset(TableCell previousCell)
int
TableCell. getStartOffset(TableCell previousCell)
int
TableCell. getTextEndOffset(TableCell previousCell)
int
TableCell. getTextStartOffset(TableCell previousCell)
void
TableRow. insertColumns(int column, int count, TableCell tableCell)
NOTE: inserting into a cell span has the effect of expanding the span if the cell text is blank or insert count > 1 or splitting the span if it is not blank and count == 1int
TableCell. insideToTextOffset(int insideOffset, TableCell previousCell)
boolean
TableCell. isAtCell(int offset, TableCell previousCell)
boolean
TableCell. isInsideCell(int offset, TableCell previousCell)
private boolean
MarkdownTable. pipeNeedsSpaceAfter(TableCell cell)
private boolean
MarkdownTable. pipeNeedsSpaceBefore(TableCell cell)
void
TableRow. set(int column, TableCell cell)
void
MarkdownTable. setCaptionCell(TableCell captionCell)
void
TableSection. setCell(int row, int column, TableCell cell)
int
TableCell. textToInsideOffset(int insideOffset, TableCell previousCell)
Method parameters in com.vladsch.flexmark.util.format with type arguments of type TableCell Modifier and Type Method Description private BasedSequence
MarkdownTable. cellText(java.util.List<TableCell> cells, int index, boolean withTrackedOffset, boolean isHeader, int width, CellAlignment alignment, Ref<java.lang.Integer> delta)
Constructors in com.vladsch.flexmark.util.format with parameters of type TableCell Constructor Description TableCell(@NotNull TableCell other, boolean copyNode, int rowSpan, int columnSpan, CellAlignment alignment)
TableCellOffsetInfo(int offset, MarkdownTable table, TableSection section, TableRow tableRow, TableCell tableCell, int row, int column, java.lang.Integer insideColumn, java.lang.Integer insideOffset)
-