Uses of Interface
org.cloudsimplus.builders.tables.Table
Packages that use Table
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 Table in org.cloudsimplus.builders.tables
Classes in org.cloudsimplus.builders.tables that implement TableModifier and TypeClassDescriptionclassAn abstract base class for implementing data tables to present simulation results.classPrints a table from a given data set, using a Comma Separated Text (CSV) format.classA generator of HTML tables.classGenerates tabular data in LaTeX format.classPrints a Markdown table from a given data set.classPrints a table from a given data set, using a simple delimited text format.Methods in org.cloudsimplus.builders.tables that return TableModifier and TypeMethodDescriptionfinal TableAbstractTable.addColumnList(String... columnTitles) Table.addColumnList(String... columnTitles) Adds a list of columns (with given titles) to the end of the table's columns to be printed, where the column data will be printed without a specific format.TableColumn.getTable()final TableAbstractTable.setColumnSeparator(@NonNull String columnSeparator) Table.setColumnSeparator(String columnSeparator) Sets the string used to separate one column from another.final TableReturns the table instance.Methods in org.cloudsimplus.builders.tables with parameters of type TableModifier and TypeMethodDescriptionprotected final TableBuilderAbstract<T> Sets theTableused to build the table with data.Sets the table this column belongs to.Constructors in org.cloudsimplus.builders.tables with parameters of type TableModifierConstructorDescriptionAbstractTableColumn(Table table, String title) Creates a column with a specific title.AbstractTableColumn(Table table, String title, String subTitle) Creates a column with a specific title and subtitle for a given table.CloudletsTableBuilder(List<? extends Cloudlet> list, Table table) Instantiates a builder to print the list of Cloudlets using the givenTable.CsvTableColumn(Table table, String title) CsvTableColumn(Table table, String title, String subTitle) HtmlTableColumn(Table table, String title) HtmlTableColumn(Table table, String title, String subTitle) LatexTableColumn(Table table, String title) LatexTableColumn(Table table, String title, String subTitle) MarkdownTableColumn(Table table, String title) MarkdownTableColumn(Table table, String title, String subTitle) TableBuilderAbstract(List<? extends T> list, Table table) Instantiates a builder to print the list of objects T using a givenTable.TextTableColumn(Table table, String title) TextTableColumn(Table table, String title, String subTitle)