Uses of Interface
org.cloudsimplus.builders.tables.TableColumn
Packages that use TableColumn
Package
Description
Provides
Table classes
that are used to format simulation results in different and structured ways such as
ASCII, CSV or HTML tables.-
Uses of TableColumn in org.cloudsimplus.builders.tables
Classes in org.cloudsimplus.builders.tables that implement TableColumnModifier and TypeClassDescriptionclassAn abstract column of a table to be generated using aTableclass.classA column of anCsvTable.classA column of anHtmlTable.classA column for aLatexTableclassA column of aMarkdownTable.classA column of a text (ASCII) table.Methods in org.cloudsimplus.builders.tables that return TableColumnModifier and TypeMethodDescriptionprotected final TableColumnAbstractTable.addColumn(TableColumn column) Adds a column to the end of the table.protected final TableColumnAbstractTable.addColumn(TableColumn column, int index) Adds a column at a given position of the table.final TableColumnfinal TableColumnCreates a column with a given title.Creates a column with a given title and subtitle.Cretes a column with a given title, subtitle and format.Sets the format to print the column data.TableColumn.setSubTitle(String subTitle) Sets the subtitle of the table (optional).Sets the table this column belongs to.Sets the title of the table (optional).Methods in org.cloudsimplus.builders.tables that return types with arguments of type TableColumnMethods in org.cloudsimplus.builders.tables with parameters of type TableColumnModifier and TypeMethodDescriptionprotected final TableColumnAbstractTable.addColumn(TableColumn column) Adds a column to the end of the table.protected final TableColumnAbstractTable.addColumn(TableColumn column, int index) Adds a column at a given position of the table.TableBuilderAbstract.addColumn(@NonNull TableColumn col, @NonNull Function<T, Object> dataFunction, int index) Adds a column to a specific position into the table to be built.TableBuilderAbstract.addColumn(TableColumn col, Function<T, Object> dataFunction) Adds a column to the end of the table to be built.Method parameters in org.cloudsimplus.builders.tables with type arguments of type TableColumnModifier and TypeMethodDescriptionfinal TableBuilderAbstract<T> TableBuilderAbstract.column(int index, @NonNull Consumer<TableColumn> consumer) Access a column at a given position in order to perform some configuration on it.