Transformer

org.beangle.data.excel.template.Transformer
trait Transformer

Defines interface methods for Excel operations

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def adjustTableSize(ref: CellRef, size: Size): Unit
def clearCell(cellRef: CellRef): Unit
def getCellData(cellRef: CellRef): Option[CellData]
def isForwardOnly: Boolean
def mergeCells(ref: CellRef, rows: Int, cols: Int): Unit
def resetArea(areaRef: AreaRef): Unit
def resetTargetCellRefs(): Unit
def setFormula(cellRef: CellRef, formulaString: String): Unit
def transform(srcCellRef: CellRef, targetCellRef: CellRef, context: Context, updateRowHeight: Boolean): Unit
def updateRowHeight(srcSheetName: String, srcRowNum: Int, targetSheetName: String, targetRowNum: Int): Unit
def workbook: Workbook
def write(os: OutputStream): Unit

Writes Excel workbook to output stream and disposes the workbook.

Writes Excel workbook to output stream and disposes the workbook.

Attributes

def writeTo(os: OutputStream): Unit

Writes Excel workbook to output stream but not close the stream designed to use with ZipOutputStream or other OutputStream for creates several xls files one time.

Writes Excel workbook to output stream but not close the stream designed to use with ZipOutputStream or other OutputStream for creates several xls files one time.

Attributes