Class TableFormatOptions

java.lang.Object
com.vladsch.flexmark.util.format.TableFormatOptions
All Implemented Interfaces:
MutableDataSetter

public class TableFormatOptions extends Object implements MutableDataSetter
  • Field Details

    • INTELLIJ_DUMMY_IDENTIFIER_CHAR

      public static final char INTELLIJ_DUMMY_IDENTIFIER_CHAR
      See Also:
    • INTELLIJ_DUMMY_IDENTIFIER

      public static final String INTELLIJ_DUMMY_IDENTIFIER
    • INTELLIJ_DUMMY_IDENTIFIER_SET

      public static final CharPredicate INTELLIJ_DUMMY_IDENTIFIER_SET
    • FORMAT_TABLE_LEAD_TRAIL_PIPES

      public static final DataKey<Boolean> FORMAT_TABLE_LEAD_TRAIL_PIPES
    • FORMAT_TABLE_SPACE_AROUND_PIPES

      public static final DataKey<Boolean> FORMAT_TABLE_SPACE_AROUND_PIPES
    • FORMAT_TABLE_ADJUST_COLUMN_WIDTH

      public static final DataKey<Boolean> FORMAT_TABLE_ADJUST_COLUMN_WIDTH
    • FORMAT_TABLE_APPLY_COLUMN_ALIGNMENT

      public static final DataKey<Boolean> FORMAT_TABLE_APPLY_COLUMN_ALIGNMENT
    • FORMAT_TABLE_FILL_MISSING_COLUMNS

      public static final DataKey<Boolean> FORMAT_TABLE_FILL_MISSING_COLUMNS
    • FORMAT_TABLE_FILL_MISSING_MIN_COLUMN

      public static final NullableDataKey<Integer> FORMAT_TABLE_FILL_MISSING_MIN_COLUMN
      Used by table formatting to set min column from which to add missing columns, null to use default
    • FORMAT_TABLE_LEFT_ALIGN_MARKER

      public static final DataKey<DiscretionaryText> FORMAT_TABLE_LEFT_ALIGN_MARKER
    • FORMAT_TABLE_MIN_SEPARATOR_COLUMN_WIDTH

      public static final DataKey<Integer> FORMAT_TABLE_MIN_SEPARATOR_COLUMN_WIDTH
    • FORMAT_TABLE_MIN_SEPARATOR_DASHES

      public static final DataKey<Integer> FORMAT_TABLE_MIN_SEPARATOR_DASHES
    • FORMAT_TABLE_TRIM_CELL_WHITESPACE

      public static final DataKey<Boolean> FORMAT_TABLE_TRIM_CELL_WHITESPACE
    • FORMAT_TABLE_CAPTION

      public static final DataKey<TableCaptionHandling> FORMAT_TABLE_CAPTION
    • FORMAT_TABLE_CAPTION_SPACES

      public static final DataKey<DiscretionaryText> FORMAT_TABLE_CAPTION_SPACES
    • FORMAT_TABLE_INDENT_PREFIX

      public static final DataKey<String> FORMAT_TABLE_INDENT_PREFIX
    • FORMAT_TABLE_MANIPULATOR

      public static final DataKey<TableManipulator> FORMAT_TABLE_MANIPULATOR
    • FORMAT_CHAR_WIDTH_PROVIDER

      public static final DataKey<CharWidthProvider> FORMAT_CHAR_WIDTH_PROVIDER
    • FORMAT_TABLE_DUMP_TRACKING_OFFSETS

      public static final DataKey<Boolean> FORMAT_TABLE_DUMP_TRACKING_OFFSETS
    • leadTrailPipes

      public final boolean leadTrailPipes
    • spaceAroundPipes

      public final boolean spaceAroundPipes
    • adjustColumnWidth

      public final boolean adjustColumnWidth
    • applyColumnAlignment

      public final boolean applyColumnAlignment
    • fillMissingColumns

      public final boolean fillMissingColumns
    • formatTableFillMissingMinColumn

      public final Integer formatTableFillMissingMinColumn
    • trimCellWhitespace

      public final boolean trimCellWhitespace
    • dumpIntellijOffsets

      public final boolean dumpIntellijOffsets
    • leftAlignMarker

      public final DiscretionaryText leftAlignMarker
    • formatTableCaption

      public final TableCaptionHandling formatTableCaption
    • formatTableCaptionSpaces

      public final DiscretionaryText formatTableCaptionSpaces
    • minSeparatorColumnWidth

      public final int minSeparatorColumnWidth
    • minSeparatorDashes

      public final int minSeparatorDashes
    • charWidthProvider

      public final CharWidthProvider charWidthProvider
    • formatTableIndentPrefix

      public final String formatTableIndentPrefix
    • tableManipulator

      public final TableManipulator tableManipulator
    • spaceWidth

      public final int spaceWidth
    • spacePad

      public final int spacePad
    • pipeWidth

      public final int pipeWidth
    • colonWidth

      public final int colonWidth
    • dashWidth

      public final int dashWidth
  • Constructor Details

    • TableFormatOptions

      public TableFormatOptions()
    • TableFormatOptions

      public TableFormatOptions(DataHolder options)
  • Method Details