AbstractCurrency

abstract class AbstractCurrency : BuilderFactory<T>

Abstract base class for building Currency instances.

Author

Oliver Lear Sigwarth (theoliverlear)

Parameters

<T>

concrete builder type

See also

BuilderFactory

Inheritors

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
abstract fun build(): T
Link copied to clipboard
abstract fun currencyCode(currencyCode: String): AbstractCurrency
Link copied to clipboard
abstract fun lastUpdated(lastUpdated: LocalDateTime): AbstractCurrency
Link copied to clipboard
abstract fun name(name: String): AbstractCurrency
Link copied to clipboard
abstract fun urlPath(urlPath: String): AbstractCurrency
Link copied to clipboard
abstract fun value(value: Double): AbstractCurrency