Uses of Class
org.jooq.ChartFormat
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of ChartFormat in org.jooq
Modifier and TypeMethodDescriptionChartFormat.category(int newCategory)
The new category source column number, defaulting to0
.ChartFormat.categoryAsText(boolean newCategoryAsText)
The new category as text value, defaulting totrue
.ChartFormat.dimensions(int newWidth, int newHeight)
The new chart dimensions, defaulting to80 x 25
.ChartFormat.display(ChartFormat.Display newDisplay)
The new display format, defaulting toChartFormat.Display.STACKED
.ChartFormat.height(int newHeight)
The new chart height, defaulting to25
.The new newline character, defaulting to\n
.ChartFormat.numericFormat(DecimalFormat newNumericFormat)
The new numeric format, defaulting to###,###.00
.ChartFormat.output(ChartFormat.Output newOutput)
The new output format, defaulting toChartFormat.Output.ASCII
.ChartFormat.shades(char... newShades)
The new column shades, defaulting to{ 'X' }
.ChartFormat.showHorizontalLegend(boolean newShowHorizontalLegend)
Whether to show the horizontal legend, defaulting totrue
.ChartFormat.showLegends(boolean newShowHorizontalLegend, boolean newShowVerticalLegend)
Whether to show legends, defaulting totrue
.ChartFormat.showVerticalLegend(boolean newShowVerticalLegend)
Whether to show the vertical legend, defaulting totrue
.ChartFormat.type(ChartFormat.Type newType)
The new chart type, defaulting toChartFormat.Type.AREA
.ChartFormat.values(int... newValues)
The new value source column numbers, defaulting to{ 1 }
.ChartFormat.width(int newWidth)
The new chart width, defaulting to80
.Modifier and TypeMethodDescriptionvoid
Formattable.formatChart(OutputStream stream, ChartFormat format)
LikeFormattable.formatChart(ChartFormat)
, but the data is output onto anOutputStream
.void
Formattable.formatChart(Writer writer, ChartFormat format)
LikeFormattable.formatChart(ChartFormat)
, but the data is output onto aWriter
.@NotNull String
Formattable.formatChart(ChartFormat format)
Get this result as an ASCII chart. -
Uses of ChartFormat in org.jooq.impl
Modifier and TypeMethodDescriptionvoid
ArrayRecordImpl.formatChart(Writer writer, ChartFormat format)