class DataRow extends AnyRef
Allows access to the underlying data in a row format.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DataRow
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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
apply(columnName: String): Any
Indexer using the column index.
-
def
apply(columnIndex: Int): Any
Indexer using the column name.
-
def
as[T](columnName: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T
Gets the typed column by name.
-
def
as[T](columnIndex: Int)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T
Gets the typed column by index.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
get(columnName: String): Try[Any]
Gets the column by name, as Try[Any] in case it doesn't exist.
-
def
get(columnIndex: Int): Try[Any]
Gets the column by index, as Try[Any] in case it doesn't exist.
-
def
getAs[T](columnName: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Try[T]
Gets the typed column by name, as Try[T] in case it doesn't exist or invalid type.
-
def
getAs[T](columnIndex: Int)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Try[T]
Gets the typed column by index, as Try[T] in case it doesn't exist or invalid type.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val rowIndex: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val table: DataTable
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
valueMap: Map[String, Any]
Returns all the values in this row for the current row index in a ColumnName -> Value Map.
-
def
values: IndexedSeq[Any]
Returns all the values in this row for the current row index.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )