case class RowImpl(values: Array[Option[ChannelBuffer]], rowFormat: RowFormat) extends Row with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RowImpl
- Serializable
- Serializable
- Product
- Equals
- Row
- 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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
get[T](index: Int)(implicit decoder: ValueDecoder[T]): T
Danger zone! If T is primitive, and the column is NULL, we explicitly cast null to T which will result in unexpected results:
Danger zone! If T is primitive, and the column is NULL, we explicitly cast null to T which will result in unexpected results:
null.asInstanceOf[Int] // 0 null.asInstanceOf[Boolean] // false
And so forth. Therefore, use of
get
is discouraged, withgetOption
orgetTry
preferred. -
final
def
get[T](name: String)(implicit decoder: ValueDecoder[T]): T
Danger zone! See get[T](Int) below
- final def getAnyOption(name: String): Option[Any]
- final def getAnyOption(index: Int): Option[Any]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- final def getOption[T](index: Int)(implicit decoder: ValueDecoder[T]): Option[T]
- final def getOption[T](name: String)(implicit decoder: ValueDecoder[T]): Option[T]
- final def getOrElse[T](name: String, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T
- final def getOrElse[T](index: Int, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T
- final def getTry[T](index: Int)(implicit decoder: ValueDecoder[T]): Try[T]
- final def getTry[T](name: String)(implicit decoder: ValueDecoder[T]): Try[T]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- val rowFormat: RowFormat
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val values: Array[Option[ChannelBuffer]]
-
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
- @throws( ... )