RowFilter

com.google.bigtable.v2.data.RowFilter$
See theRowFilter companion class
object RowFilter extends GeneratedMessageCompanion[RowFilter]

Attributes

Companion:
class
Source:
RowFilter.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[RowFilter]
trait Serializable
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

final case class Chain(filters: Seq[RowFilter], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[Chain]

A RowFilter which sends rows through several RowFilters in sequence.

A RowFilter which sends rows through several RowFilters in sequence.

Attributes

filters

The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.

Companion:
object
Source:
RowFilter.scala
Graph
Supertypes
trait Updatable[Chain]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Chain extends GeneratedMessageCompanion[Chain]

Attributes

Companion:
class
Source:
RowFilter.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[Chain]
trait Serializable
class Object
trait Matchable
class Any
Self type
Chain.type
final case class Condition(predicateFilter: Option[RowFilter], trueFilter: Option[RowFilter], falseFilter: Option[RowFilter], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[Condition]

A RowFilter which evaluates one of two possible RowFilters, depending on whether or not a predicate RowFilter outputs any cells from the input row.

A RowFilter which evaluates one of two possible RowFilters, depending on whether or not a predicate RowFilter outputs any cells from the input row.

IMPORTANT NOTE: The predicate filter does not execute atomically with the true and false filters, which may lead to inconsistent or unexpected results. Additionally, Condition filters have poor performance, especially when filters are set for the false condition.

Attributes

falseFilter

The filter to apply to the input row if predicate_filter does not return any results. If not provided, no results will be returned in the false case.

predicateFilter

If predicate_filter outputs any cells, then true_filter will be evaluated on the input row. Otherwise, false_filter will be evaluated.

trueFilter

The filter to apply to the input row if predicate_filter returns any results. If not provided, no results will be returned in the true case.

Companion:
object
Source:
RowFilter.scala
Graph
Supertypes
trait Updatable[Condition]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Condition extends GeneratedMessageCompanion[Condition]

Attributes

Companion:
class
Source:
RowFilter.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[Condition]
trait Serializable
class Object
trait Matchable
class Any
Self type
object Filter

Attributes

Companion:
trait
Source:
RowFilter.scala
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Filter.type
sealed trait Filter extends GeneratedOneof

Attributes

Companion:
object
Source:
RowFilter.scala
Graph
Supertypes
trait GeneratedOneof
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
final case class Interleave(filters: Seq[RowFilter], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[Interleave]

A RowFilter which sends each row to each of several component RowFilters and interleaves the results.

A RowFilter which sends each row to each of several component RowFilters and interleaves the results.

Attributes

filters

The elements of "filters" all process a copy of the input row, and the results are pooled, sorted, and combined into a single output row. If multiple cells are produced with the same column and timestamp, they will all appear in the output row in an unspecified mutual order. Consider the following example, with three filters: input row | ----------------------------------------------------- | | | f(0) f(1) f(2) | | | 1: foo,bar,10,x foo,bar,10,z far,bar,7,a 2: foo,blah,11,z far,blah,5,x far,blah,5,x | | | ----------------------------------------------------- | 1: foo,bar,10,z // could have switched with #2 2: foo,bar,10,x // could have switched with #1 3: foo,blah,11,z 4: far,bar,7,a 5: far,blah,5,x // identical to #6 6: far,blah,5,x // identical to #5 All interleaved filters are executed atomically.

Companion:
object
Source:
RowFilter.scala
Graph
Supertypes
trait Updatable[Interleave]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Interleave extends GeneratedMessageCompanion[Interleave]

Attributes

Companion:
class
Source:
RowFilter.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[Interleave]
trait Serializable
class Object
trait Matchable
class Any
Self type
implicit class RowFilterLens[UpperPB](_l: Lens[UpperPB, RowFilter]) extends ObjectLens[UpperPB, RowFilter]

Attributes

Source:
RowFilter.scala
Graph
Supertypes
class ObjectLens[UpperPB, RowFilter]
trait Lens[UpperPB, RowFilter]
trait Serializable
class Object
trait Matchable
class Any

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
Source:
Mirror.scala

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
Source:
Mirror.scala
type ValueType = A

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala

Value members

Concrete methods

def enumCompanionForFieldNumber(`__fieldNumber`: Int): GeneratedEnumCompanion[_]

Attributes

Source:
RowFilter.scala
def javaDescriptor: Descriptor

Returns the Java descriptors for this message. It is recommended to use scalaDescriptors. The Java descriptors are available even when Java conversions is disabled, however they are not available in Scala.js or scala-native.

Returns the Java descriptors for this message. It is recommended to use scalaDescriptors. The Java descriptors are available even when Java conversions is disabled, however they are not available in Scala.js or scala-native.

Attributes

Source:
RowFilter.scala
def messageCompanionForFieldNumber(`__number`: Int): GeneratedMessageCompanion[_]

Attributes

Source:
RowFilter.scala
def of(filter: Filter): RowFilter

Attributes

Source:
RowFilter.scala
def parseFrom(`_input__`: CodedInputStream): RowFilter

Parses a message from a CodedInputStream.

Parses a message from a CodedInputStream.

Attributes

Source:
RowFilter.scala
def scalaDescriptor: Descriptor

Attributes

Source:
RowFilter.scala

Inherited methods

def enumCompanionForField(field: FieldDescriptor): GeneratedEnumCompanion[_]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def fromAscii(s: String): A

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def merge(a: RowFilter, input: CodedInputStream): A

Merges the given message with the additional fields in the steam.

Merges the given message with the additional fields in the steam.

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def messageCompanionForField(field: FieldDescriptor): GeneratedMessageCompanion[_]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def parseDelimitedFrom(input: InputStream): Option[A]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def parseDelimitedFrom(input: CodedInputStream): Option[A]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def parseFrom(s: Array[Byte]): A

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def parseFrom(input: InputStream): A

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def streamFromDelimitedInput(input: InputStream): Stream[A]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def validate(s: Array[Byte]): Try[A]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala
def validateAscii(s: String): Either[TextFormatError, A]

Attributes

Inherited from:
GeneratedMessageCompanion
Source:
GeneratedMessageCompanion.scala

Concrete fields

Attributes

Source:
RowFilter.scala
final val CHAIN_FIELD_NUMBER: 1

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala
final val SINK_FIELD_NUMBER: 16

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala

Attributes

Source:
RowFilter.scala
lazy val nestedMessagesCompanions: Seq[GeneratedMessageCompanion[_ <: GeneratedMessage]]

Attributes

Source:
RowFilter.scala

Implicits

Implicits

final implicit def RowFilterLens[UpperPB](_l: Lens[UpperPB, RowFilter]): RowFilterLens[UpperPB]

Attributes

Source:
RowFilter.scala
implicit def messageCompanion: GeneratedMessageCompanion[RowFilter]

Attributes

Source:
RowFilter.scala
implicit def messageReads: Reads[RowFilter]

Attributes

Source:
RowFilter.scala