sealed abstract class ScalarValue extends Value
Base trait for all scalar values.
Arrays, objects, and null are not considered scalar values.
- Alphabetic
- By Inheritance
- ScalarValue
- Value
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
apply(p: FieldPath, ps: FieldPath*): Result[Value]
Extract the sub-value at the specified path.
Extract the sub-value at the specified path.
- Definition Classes
- Value
-
final
def
apply[T](field: Field[T]): Result[T]
Extract a value with the provided field.
Extract a value with the provided field.
- Definition Classes
- Value
-
final
def
collect[T](field: Field[T]): Result[Seq[T]]
Extract the elements of an ArrayV using the provided field.
Extract the elements of an ArrayV using the provided field.
- Definition Classes
- Value
-
final
def
to[T](implicit arg0: Decoder[T]): Result[T]
Cast the value to T, using a Decoder.
Cast the value to T, using a Decoder.
- Definition Classes
- Value
-
val
vtype: String
Describe the type that this value will be representing
Describe the type that this value will be representing
- Definition Classes
- ScalarValue → Value