github.com/shakinm/xlsReader@v0.9.12/xls/structure/cells.go (about)

     1  package structure
     2  
     3  type CellData interface {
     4  	GetString() string
     5  	GetFloat64() float64
     6  	GetInt64() int64
     7  	GetXFIndex() int
     8  	GetType() string
     9  }