Packages

final case class Field[+P](path: FieldPath, value: P) extends Product with Serializable

jap.fields.Field is heart of the library and contains jap.fields.FieldPath and its value

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Field
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Field(path: FieldPath, value: P)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  8. def first[P1, P2](implicit ev: <:<[P, (P1, P2)]): Field[P1]

    Gets first tuple element of value.

    Gets first tuple element of value. Given P is Tuple

  9. val fullPath: String

    Returns jap.fields.FieldPath.full of path

  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def map[B](f: (P) => B): Field[B]

    Maps value

  13. def mapPath(f: (FieldPath) => FieldPath): Field[P]

    Maps path

  14. val name: String

    Returns jap.fields.FieldPath.name of path

  15. def named(name: String): Field[P]

    Renames this jap.fields.Field.

    Renames this jap.fields.Field. Changes last path part aka name.

  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def option[V](implicit ev: <:<[P, Option[V]]): Option[Field[V]]

    Turns Option on value into Option on jap.fields.Field.

    Turns Option on value into Option on jap.fields.Field. Given P i Option[V]

  20. val path: FieldPath
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. def provideSub[S](name: String, value: S): Field[S]

    Creates new jap.fields.Field with provided value and name.

    Creates new jap.fields.Field with provided value and name. Prepends current fields path to this field path

  23. def second[P1, P2](implicit ev: <:<[P, (P1, P2)]): Field[P2]

    Gets second tuple element of value.

    Gets second tuple element of value. Given P is Tuple

  24. def selectSub[S](name: String, selector: (P) => S): Field[S]

    Creates new jap.fields.Field with provided name and selected value.

    Creates new jap.fields.Field with provided name and selected value. Prepends current fields path to this field path

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    Field → AnyRef → Any
  27. val value: P
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. def withPath(newPath: FieldPath): Field[P]

    Change path

  32. def withValue[V](newValue: V): Field[V]

    Change value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped