NamesBuilder

fs2.data.json.selector.NamesBuilder
See theNamesBuilder companion object
case class NamesBuilder[M, S](predicate: NamePredicate, strict: Boolean, mandatory: Boolean, parent: SelectorBuilder[_, _]) extends SelectorBuilder[M, S]

Attributes

Companion
object
Source
dsl.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class SelectorBuilder[M, S]
class Object
trait Matchable
class Any
Show all

Members list

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

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