org.gridgain.visor.commands

VisorTextTable

class VisorTextTable extends AnyRef

Overview

Provides ASCII-based table with minimal styling support.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VisorTextTable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VisorTextTable()

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def #=(cells: Any*): VisorTextTable

    Adds header (one or more header cells).

    Adds header (one or more header cells).

    cells

    Header cells. For multi-line cells - use Seq(...).

  4. def +=(cells: Any*): VisorTextTable

    Adds row (one or more row cells).

    Adds row (one or more row cells).

    cells

    Row cells. For multi-line cells - use Seq(...).

  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. def addHeaderCell(lines: Any*): VisorTextTable

    Adds single header cell.

    Adds single header cell.

    lines

    One or more cell lines.

  7. def addRowCell(lines: Any*): VisorTextTable

    Adds single row cell.

    Adds single row cell.

    lines

    One or more row cells. Multiple lines will be printed on separate lines.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. var autoBorder: Boolean

    Flag indicating whether of not to automatically draw horizontal lines for multiline rows.

  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def endRow(): Unit

    Ends data row.

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. def headerStyle(hdrSty: String): Unit

    Sets current header style.

    Sets current header style.

    hdrSty

    Header style to set.

  18. def headerStyle: String

    Gets current header style.

  19. var insideBorder: Boolean

    Flag indicating whether or not to draw inside horizontal lines between individual rows.

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def margin(top: Int = 0, right: Int = 0, bottom: Int = 0, left: Int = 0): Unit

    Sets table's margin.

    Sets table's margin.

    top

    Top margin.

    right

    Right margin.

    bottom

    Bottom margin.

    left

    Left margin.

  22. var maxCellWidth: Int

    Maximum width of the cell.

    Maximum width of the cell. If any line in the cell exceeds this width it will be cut in two or more lines.

    NOTE: it doesn't include into account the padding. Only the actual string length is counted.

  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. def render(): Unit

    Renders this table.

  27. def rowStyle(rowSty: String): Unit

    Sets current row style.

    Sets current row style.

    rowSty

    Row style to set.

  28. def rowStyle: String

    Gets current row style.

  29. def startRow(): Unit

    Starts data row.

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped