Class TextTable
java.lang.Object
org.cloudsimplus.builders.tables.AbstractTable
org.cloudsimplus.builders.tables.CsvTable
org.cloudsimplus.builders.tables.TextTable
- All Implemented Interfaces:
Table
Prints a table from a given data set, using a simple delimited text format.
- Since:
- CloudSim Plus 1.0
- Author:
- Manoel Campos da Silva Filho
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCretes a column with a given title, subtitle and format.protected voidvoidCSV files don't have a table closing line.voidCSV files don't have a table opening line.voidCSV files don't have a title.Methods inherited from class org.cloudsimplus.builders.tables.CsvTable
createHorizontalLine, getCentralizedString, getLengthOfColumnHeadersRow, rowClosing, rowOpening, stringRepeat, subtitleHeaderOpeningMethods inherited from class org.cloudsimplus.builders.tables.AbstractTable
addColumn, addColumn, addColumnList, colCount, getRows, newColumn, newColumn, newRow, print, setColumnSeparator, setTitleMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.cloudsimplus.builders.tables.Table
getColumns, getColumnSeparator, getTitle
-
Constructor Details
-
TextTable
public TextTable() -
TextTable
-
-
Method Details
-
printTitle
public void printTitle()Description copied from class:CsvTableCSV files don't have a title.- Overrides:
printTitlein classCsvTable
-
printTableOpening
public void printTableOpening()Description copied from class:CsvTableCSV files don't have a table opening line.- Overrides:
printTableOpeningin classCsvTable
-
printColumnHeaders
protected void printColumnHeaders()- Overrides:
printColumnHeadersin classAbstractTable
-
printTableClosing
public void printTableClosing()Description copied from class:CsvTableCSV files don't have a table closing line.- Overrides:
printTableClosingin classCsvTable
-
getLineSeparator
- Overrides:
getLineSeparatorin classCsvTable
-
newColumn
Description copied from interface:TableCretes a column with a given title, subtitle and format. The created column is not added to the table.
-