Packages

case class ViewRow(_content: Array[Byte]) extends Product with Serializable

An individual view result row.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ViewRow
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ViewRow(_content: Array[Byte])

Value Members

  1. def id: Option[String]

    The id of this row.

    The id of this row.

    It's optional as it's not present on reduces.

  2. 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

  3. def toString(): String
    Definition Classes
    ViewRow → AnyRef → Any
  4. 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