RootBuilder

fs2.data.json.selector.RootBuilder$

Attributes

Source
dsl.scala
Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type

Members list

Type members

Inherited types

type MirroredElemLabels = EmptyTuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Singleton
Source
Mirror.scala
type MirroredElemTypes = EmptyTuple

Attributes

Inherited from:
Singleton
Source
Mirror.scala

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
Source
Mirror.scala
type MirroredMonoType = Singleton.this.type

The mirrored *-type

The mirrored *-type

Attributes

Inherited from:
Singleton
Source
Mirror.scala
type MirroredType = Singleton.this.type

Attributes

Inherited from:
Singleton
Source
Mirror.scala

Value members

Concrete methods

Compiles the current builder into its final selector representation.

Compiles the current builder into its final selector representation.

Attributes

Source
dsl.scala

Inherited methods

Creates a field selector, that will select only the element at the given field in the currently selected object. The resulting selector is strict and will fail if the element is not an object.

Creates a field selector, that will select only the element at the given field in the currently selected object. The resulting selector is strict and will fail if the element is not an object.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala

Creates a fields selector, that will select only the element at the given fields in the currently selected object. The resulting selector is strict and will fail if the element is not an object.

Creates a fields selector, that will select only the element at the given fields in the currently selected object. The resulting selector is strict and will fail if the element is not an object.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala
def fromProduct(p: Product): MirroredMonoType

Create a new instance of type T with elements taken from product p.

Create a new instance of type T with elements taken from product p.

Attributes

Inherited from:
Singleton
Source
Mirror.scala

Creates an index selector, that will select only the element at the given index in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Creates an index selector, that will select only the element at the given index in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala
def indices(i: Int, is: Int*): IndicesBuilder[Strict]

Creates an indices selector, that will select only the elements at the given indices in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Creates an indices selector, that will select only the elements at the given indices in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala

Creates an iterator selector, that will enumerate all elements in the currently selected array or object. The resulting selector is strict and will fail if the element is not an array or an object.

Creates an iterator selector, that will enumerate all elements in the currently selected array or object. The resulting selector is strict and will fail if the element is not an array or an object.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
def range(start: Int, end: Int): IndicesBuilder[Strict]

Creates a range selector, that will select only the elements between the given indices in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Creates a range selector, that will select only the elements between the given indices in the currently selected array. The resulting selector is strict and will fail if the element is not an array.

Attributes

Inherited from:
SelectorBuilder
Source
dsl.scala