Packages

p

fabric

package fabric

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. fabric
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Arr(value: Vector[Value]) extends AnyVal with Value with Product with Serializable

    Arr represents an array (Vector[Value])

  2. final case class Bool(value: Boolean) extends AnyVal with Value with Product with Serializable

    Bool represents a boolean value

  3. sealed trait MergeType extends AnyRef

    MergeType is used to determine how merging of two Values should occur

  4. final case class Num(value: BigDecimal) extends AnyVal with Value with Product with Serializable

    Num represents a numeric value and wraps a BigDecimal

  5. final case class Obj(value: Map[String, Value]) extends AnyVal with Value with Product with Serializable

    Obj represents a Map of key-value pairs (String, Value)

  6. final class Path extends AnyVal

    Path is a convenience wrapper to represent paths for lookups or changes in Value

  7. final case class Str(value: String) extends AnyVal with Value with Product with Serializable

    Str represents a String

  8. sealed trait Value extends Any

    Value represents the base sealed trait for all representable types in fabric.

  9. sealed trait ValueType extends AnyRef

    ValueType represents the possible types of Value

Value Members

  1. def arr(values: Value*): Arr

    Create an Arr from the params

  2. implicit def bool(b: Boolean): Bool

    Create a Bool from the supplied Boolean

  3. implicit def doubles2Arr(seq: Seq[Double]): Arr
  4. implicit def ints2Arr(seq: Seq[Int]): Arr
  5. implicit def map2Obj(map: Map[String, Value]): Obj
  6. implicit def num(value: BigDecimal): Num

    Create a Num from the supplied BigDecimal

  7. implicit def num(value: Double): Num

    Create a Num from the supplied Double

  8. def num(value: String): Num

    Create a Num from the supplied String

  9. def obj(params: (String, Value)*): Obj

    Create an Obj from the params

  10. implicit def seq2Arr(seq: Seq[Value]): Arr
  11. implicit def str(s: String): Str

    Create a Str from the supplied String

  12. implicit def string2Path(s: String): Path
  13. object MergeType
  14. object Null extends Value

    Null represents a null Value

  15. object Obj extends Serializable
  16. object Path
  17. object Str extends Serializable
  18. object Value
  19. object ValueType extends Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped