All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bigquery4s.WrappedTableRow.scala Maven / Gradle / Ivy

There is a newer version: 0.9
Show newest version
package bigquery4s

import com.google.api.services.bigquery.model.{ TableCell, TableRow }
import scala.collection.JavaConverters._

/**
 * TableRow wrapper
 */
case class WrappedTableRow(underlying: TableRow) {

  lazy val cells: Seq[WrappedTableCell] = {
    underlying.getF.asScala.map(cell => WrappedTableCell(cell)).toSeq
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy