Package org.cloudsimplus.builders.tables
package org.cloudsimplus.builders.tables
Provides
Table classes
that are used to format simulation results in different and structured ways such as
ASCII, CSV or HTML tables. Such tables can even be used by external softwares to process simulation results.
All the examples use some Table
implementation to print simulation results.
The classes and interfaces provided allow creating custom TableBuilders to add, change or remove columns from the results, to sort rows, to filter, and so on.
- Author:
- Manoel Campos da Silva Filho
-
ClassDescriptionAn abstract base class for implementing data tables to present simulation results.An abstract column of a table to be generated using a
Tableclass.Builds a table for printing simulation results from a list of Cloudlets.Prints a table from a given data set, using a Comma Separated Text (CSV) format.A column of anCsvTable.Builds a table for printingHostStateHistoryEntryentries from theHost.getStateHistory().A generator of HTML tables.A column of anHtmlTable.Generates tabular data in LaTeX format.A column for aLatexTablePrints a Markdown table from a given data set.A column of aMarkdownTable.An interface for classes that generate tables from a given data set to show simulation results, following the Builder Design Pattern.An abstract class to build tables to print data from a list of objects containing simulation results.An interface that represents a column of a table generated using aTable.Prints a table from a given data set, using a simple delimited text format.A column of a text (ASCII) table.