case class DataRows(tableName: String, columns: Vector[ColumnDescription] = Vector.empty, data: Vector[Vector[String]] = Vector.empty, parentTables: Seq[String] = Nil) extends Product with Serializable
Holds data AND columns information so the data can be imported.
- parentTables
if links like foreign keys were followed to get that data (purely informative)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DataRows
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new DataRows(tableName: String, columns: Vector[ColumnDescription] = Vector.empty, data: Vector[Vector[String]] = Vector.empty, parentTables: Seq[String] = Nil)
- parentTables
if links like foreign keys were followed to get that data (purely informative)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addColumn(name: String, typeName: String, jdbcType: JDBCType): DataRows
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def column(name: String): ColumnDescription
- def columnIndex(column: String): Int
- lazy val columnNames: Vector[String]
- def columns(names: List[String]): Vector[ColumnDescription]
- val columns: Vector[ColumnDescription]
- def computeColumn(name: String, typeName: String, jdbcType: JDBCType, transformData: (Map[String, String]) => String): DataRows
- val data: Vector[Vector[String]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def filter(f: (Map[String, String]) => Boolean): DataRows
- def filterColumns(columnNames: String*): DataRows
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map(f: (Map[String, String]) => Map[String, String]): DataRows
- def map(columnNames: String*): Vector[Vector[String]]
- def migrate(newTableName: String, transformations: Vector[ColumnTransformation]): DataRows
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val parentTables: Seq[String]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def rename(newTableName: String): DataRows
- def replace(columnName: String, value: String): DataRows
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val tableName: String
- def toJson: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object relevant
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated