com.eharmony.aloha.semantics.func

GenFunc4

case class GenFunc4[-A, B1, B2, B3, B4, +C](specification: String, f: (B1, B2, B3, B4) ⇒ C, f1: GeneratedAccessor[A, B1], f2: GeneratedAccessor[A, B2], f3: GeneratedAccessor[A, B3], f4: GeneratedAccessor[A, B4]) extends GenAggFunc[A, C] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, GenAggFunc[A, C], (A) ⇒ C, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. GenFunc4
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. GenAggFunc
  7. Function1
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GenFunc4(specification: String, f: (B1, B2, B3, B4) ⇒ C, f1: GeneratedAccessor[A, B1], f2: GeneratedAccessor[A, B2], f3: GeneratedAccessor[A, B3], f4: GeneratedAccessor[A, B4])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def accessorOutput(a: A): Map[String, Try[Any]]

    Produce a list of results by applying each accessor on the input.

    Produce a list of results by applying each accessor on the input.

    a

    the input

    returns

    a map from each accessor's descriptor to the value produced by the accessor.

    Definition Classes
    GenAggFunc
  7. def accessorOutputMissing(a: A): List[String]

    Produce a list of accessor descriptors where the accessor results in missing data.

    Produce a list of accessor descriptors where the accessor results in missing data. This is determined applying accessorOutput and collecting keys whose values are None or Left(_).

    a

    input on which we are trying to report accessors with missing outputs.

    returns

    Definition Classes
    GenAggFunc
  8. def accessorOutputProblems(a: A): GenAggFuncAccessorProblems

    Definition Classes
    GenAggFunc
  9. def accessorOutputWithError(a: A): List[String]

    Definition Classes
    GenAggFunc
  10. def accessors: List[GeneratedAccessor[A, _]]

    Get the accessors contained in the Function.

    Get the accessors contained in the Function.

    returns

    Definition Classes
    GenAggFunc
  11. final def accessorsInErr(ao: Map[String, Try[Any]]): List[String]

    Accessor names for accessors with errors.

    Accessor names for accessors with errors.

    ao

    output of accessorOutput applied to an input.

    returns

    Attributes
    protected[this]
    Definition Classes
    GenAggFunc
  12. final def accessorsWithMissing(ao: Map[String, Try[Any]]): List[String]

    Produce a list of accessor descriptors where the accessor results in missing data.

    Produce a list of accessor descriptors where the accessor results in missing data. This is determined applying accessorOutput and collecting keys whose values are None or Left(_).

    ao

    input on which we are trying to report accessors with missing outputs.

    returns

    Attributes
    protected[this]
    Definition Classes
    GenAggFunc
  13. def andThen[A](g: (C) ⇒ A): (A) ⇒ A

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  14. def andThenGenAggFunc[D](g: (C) ⇒ D): GenFunc4[A, B1, B2, B3, B4, D]

    Like Function1.

    Like Function1.andThen except it returns a GenAggFunc.

    g

    a function to execute after this

    returns

    Definition Classes
    GenFunc4GenAggFunc
  15. def apply(a: A): C

    Definition Classes
    GenFunc4 → Function1
    Annotations
    @inline()
  16. def arity: Int

    A convenience method providing the arity of the function.

    A convenience method providing the arity of the function. This is just:

    def arity = accessors.size
    returns

    Definition Classes
    GenAggFunc
  17. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def compose[A](g: (A) ⇒ A): (A) ⇒ C

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. val f: (B1, B2, B3, B4) ⇒ C

  22. val f1: GeneratedAccessor[A, B1]

  23. val f2: GeneratedAccessor[A, B2]

  24. val f3: GeneratedAccessor[A, B3]

  25. val f4: GeneratedAccessor[A, B4]

  26. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. val specification: String

    The specification of the function.

    The specification of the function.

    Definition Classes
    GenFunc4GenAggFunc
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    GenAggFunc → Function1 → AnyRef → Any
  35. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from GenAggFunc[A, C]

Inherited from (A) ⇒ C

Inherited from AnyRef

Inherited from Any

Ungrouped