ExcelBasicSYM

abstract
class ExcelBasicSYM[F[_]]

Basic getter interface from an Excel cell

Note

These methods return the Option value. In the Excel convention, it's very difficult to distinguish that the cell is empty or not. This optional design requires that its implementation need to care for the empty.

class Object
trait Matchable
class Any

Value members

Abstract methods

def getBoolean(index: Int): F[ValidatedNel[ExcelParseError, Option[Boolean]]]

Get Boolean data in the cell

Get Boolean data in the cell

def getDouble(index: Int): F[ValidatedNel[ExcelParseError, Option[Double]]]

Get Double data in the cell

Get Double data in the cell

def getInt(index: Int): F[ValidatedNel[ExcelParseError, Option[Int]]]

Get Int data in the cell

Get Int data in the cell

def getString(index: Int): F[ValidatedNel[ExcelParseError, Option[String]]]

Get String data in the cell

Get String data in the cell