case class ViewRow(_content: Array[Byte]) extends Product with Serializable
An individual view result row.
- Alphabetic
- By Inheritance
- ViewRow
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ViewRow(_content: Array[Byte])
Value Members
- def id: Option[String]
The id of this row.
The id of this row.
It's optional as it's not present on reduces.
- def keyAs[T](implicit deserializer: JsonDeserializer[T]): Try[T]
Return the key, converted into the application's preferred representation.
Return the key, converted into the application's preferred representation.
- T
this can be of any type for which an implicit
com.couchbase.client.scala.codec.JsonDeserializer
can be found: a list of types that are supported 'out of the box' is available at these JSON docs
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toString(): String
- Definition Classes
- ViewRow → AnyRef → Any
- def valueAs[T](implicit deserializer: JsonDeserializer[T]): Try[T]
Return the value, converted into the application's preferred representation.
Return the value, converted into the application's preferred representation.
- T
this can be of any type for which an implicit
com.couchbase.client.scala.codec.JsonDeserializer
can be found: a list of types that are supported 'out of the box' is available at these JSON docs