case class RowImpl(values: Array[Option[ByteBuf]], rowFormat: RowFormat) extends Row with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RowImpl
- Serializable
- Product
- Equals
- Row
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- 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[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val rowFormat: RowFormat
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val values: Array[Option[ByteBuf]]
- 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])