Uses of Class
org.cloudsimplus.builders.tables.TableBuilderAbstract
Packages that use TableBuilderAbstract
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 TableBuilderAbstract in org.cloudsimplus.builders.tables
Subclasses of TableBuilderAbstract in org.cloudsimplus.builders.tablesModifier and TypeClassDescriptionclassBuilds a table for printing simulation results from a list of Cloudlets.classBuilds a table for printingHostStateHistoryEntryentries from theHost.getStateHistory().Methods in org.cloudsimplus.builders.tables that return TableBuilderAbstractModifier and TypeMethodDescriptionTableBuilderAbstract.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.final 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.final TableBuilderAbstract<T> TableBuilderAbstract.removeColumn(int index) Removes a column from a given position.final TableBuilderAbstract<T> TableBuilderAbstract.removeColumn(int... indexes) Removes columns from given positions.protected final TableBuilderAbstract<T> TableBuilderAbstract.setObjectList(List<? extends T> list) Sets a List of objects T to be printed.protected final TableBuilderAbstract<T> Sets theTableused to build the table with data.