FilterOptionsLens

implicit class FilterOptionsLens[UpperPB](_l: Lens[UpperPB, FilterOptions]) extends ObjectLens[UpperPB, FilterOptions]
class ObjectLens[UpperPB, FilterOptions]
trait Lens[UpperPB, FilterOptions]
class Object
trait Matchable
class Any

Value members

Concrete methods

def count: Lens[UpperPB, Empty]
def eventType: Lens[UpperPB, Expression]
def filter: Lens[UpperPB, Filter]
def max: Lens[UpperPB, Int]
def streamIdentifier: Lens[UpperPB, Expression]
def window: Lens[UpperPB, Window]

Inherited methods

def :=(a: FilterOptions): () => UpperPB

alias to set

alias to set

Inherited from:
Lens
Source:
Lenses.scala
def compose[B](other: Lens[FilterOptions, B]): Lens[UpperPB, B]

Composes two lenses, this enables nesting.

Composes two lenses, this enables nesting.

If our field of type A has a sub-field of type B, then given a lens for it (other: Lens[A, B]) we can create a single lens from Container to B.

Inherited from:
Lens
Source:
Lenses.scala
def field[A](getter: FilterOptions => A)(setter: (FilterOptions, A) => FilterOptions): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from:
ObjectLens
Source:
Lenses.scala
def field[A](lens: Lens[FilterOptions, A]): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from:
ObjectLens
Source:
Lenses.scala
override def get(u: UpperPB): FilterOptions
Definition Classes
ObjectLens -> Lens
Inherited from:
ObjectLens
Source:
Lenses.scala
def modify(f: FilterOptions => FilterOptions): () => UpperPB

Represent an update operator (like x.y += 1 )

Represent an update operator (like x.y += 1 )

Inherited from:
Lens
Source:
Lenses.scala
override def set(c: FilterOptions): () => UpperPB
Definition Classes
ObjectLens -> Lens
Inherited from:
ObjectLens
Source:
Lenses.scala
def setIfDefined(aOpt: Option[FilterOptions]): () => UpperPB

Optional assignment.

Optional assignment.

Given a Some[A], assign the Some's value to the field. Given None, the container is unchanged.

Inherited from:
Lens
Source:
Lenses.scala
def update(ms: Lens[FilterOptions, FilterOptions] => () => FilterOptions*): () => UpperPB
Inherited from:
ObjectLens
Source:
Lenses.scala
def zip[B](other: Lens[UpperPB, B]): Lens[UpperPB, (FilterOptions, B)]

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Inherited from:
Lens
Source:
Lenses.scala