Cell

com.google.bigtable.v2.data.Cell
See theCell companion object
final case class Cell(timestampMicros: Long, value: ByteString, labels: Seq[String], unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[Cell]

Specifies (some of) the contents of a single row/column/timestamp of a table.

Value parameters

labels

Labels applied to the cell by a [RowFilter][google.bigtable.v2.RowFilter].

timestampMicros

The cell's stored timestamp, which also uniquely identifies it within its column. Values are always expressed in microseconds, but individual tables may set a coarser granularity to further restrict the allowed values. For example, a table which specifies millisecond granularity will only allow values of timestamp_micros which are multiples of 1000.

value

The value stored in the cell. May contain any byte string, including the empty string, up to 100MiB in length.

Attributes

Companion
object
Source
Cell.scala
Graph
Supertypes
trait Updatable[Cell]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addAllLabels(`__vs`: Iterable[String]): Cell

Attributes

Source
Cell.scala
def addLabels(`__vs`: String*): Cell

Attributes

Source
Cell.scala

Attributes

Source
Cell.scala
def companion: Cell.type

Attributes

Source
Cell.scala

Attributes

Source
Cell.scala
def getField(`__field`: FieldDescriptor): PValue

Attributes

Source
Cell.scala
def getFieldByNumber(`__fieldNumber`: Int): Any

Attributes

Source
Cell.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
Cell.scala
def toProtoString: String

Returns a human-readable ASCII format representation of this message.

Returns a human-readable ASCII format representation of this message.

The original message can be decoded from this format by using fromAscii on the companion object.

Attributes

Returns

human-readable representation of this message.

Source
Cell.scala
def withLabels(`__v`: Seq[String]): Cell

Attributes

Source
Cell.scala
def withTimestampMicros(`__v`: Long): Cell

Attributes

Source
Cell.scala
def withUnknownFields(`__v`: UnknownFieldSet): Cell

Attributes

Source
Cell.scala
def withValue(`__v`: ByteString): Cell

Attributes

Source
Cell.scala
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Source
Cell.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
def update(ms: Lens[Cell, Cell] => () => Cell*): A

Attributes

Inherited from:
Updatable
Source
Lenses.scala
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala