Packages

final case class ForexLookupTo[F[_]](conversionAmount: Double, fromCurr: CurrencyUnit, config: ForexConfig, client: OerClient[F]) extends Product with Serializable

ForexLookupTo is the second part of the fluent interface, which passes parameters taken from Forex class to the next stage in the fluent interface and sets the target currency for the lookup/conversion. Method in this class returns ForexLookupWhen object which will be passed to the next stage in the fluent interface.

conversionAmount

The amount of money to be converted, it is set to 1 unit for look up operation.

fromCurr

The source currency

config

Forex config

client

Passed down client that does actual work

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ForexLookupTo
  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 ForexLookupTo(conversionAmount: Double, fromCurr: CurrencyUnit, config: ForexConfig, client: OerClient[F])

    conversionAmount

    The amount of money to be converted, it is set to 1 unit for look up operation.

    fromCurr

    The source currency

    config

    Forex config

    client

    Passed down client that does actual work

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. val client: OerClient[F]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. val config: ForexConfig
  8. val conversionAmount: Double
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val fromCurr: CurrencyUnit
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def productElementNames: Iterator[String]
    Definition Classes
    Product
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def to(toCurr: CurrencyUnit): ForexLookupWhen[F]

    Continue building the target currency to the desired one

    Continue building the target currency to the desired one

    toCurr

    Target currency

    returns

    ForexLookupWhen object which is final part of the fluent interface

  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped