sealed abstract class LnCurrencyUnit extends NetworkElement with Ordered[LnCurrencyUnit] with BasicArithmetic[LnCurrencyUnit]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LnCurrencyUnit
  2. BasicArithmetic
  3. Ordered
  4. Comparable
  5. NetworkElement
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def character: Char
  2. abstract def toBigInt: BigInt
  3. abstract def toPicoBitcoinMultiplier: Int
  4. abstract def underlying: BigInt
    Attributes
    protected

Concrete Value Members

  1. def !=(ln: LnCurrencyUnit): Boolean
  2. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  3. final def ##: Int
    Definition Classes
    AnyRef → Any
  4. def *(ln: LnCurrencyUnit): LnCurrencyUnit
    Definition Classes
    LnCurrencyUnitBasicArithmetic
  5. def *(factor: BigInt): LnCurrencyUnit
    Definition Classes
    LnCurrencyUnitBasicArithmetic
  6. def +(ln: LnCurrencyUnit): LnCurrencyUnit
    Definition Classes
    LnCurrencyUnitBasicArithmetic
  7. def -(ln: LnCurrencyUnit): LnCurrencyUnit
    Definition Classes
    LnCurrencyUnitBasicArithmetic
  8. def <(that: LnCurrencyUnit): Boolean
    Definition Classes
    Ordered
  9. def <=(that: LnCurrencyUnit): Boolean
    Definition Classes
    Ordered
  10. def ==(ln: LnCurrencyUnit): Boolean
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def >(that: LnCurrencyUnit): Boolean
    Definition Classes
    Ordered
  13. def >=(that: LnCurrencyUnit): Boolean
    Definition Classes
    Ordered
  14. def addSafe(n: LnCurrencyUnit): Try[LnCurrencyUnit]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the + operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def byteSize: Long

    The size of the NetworkElement in bytes.

    The size of the NetworkElement in bytes.

    Definition Classes
    NetworkElement
  17. def bytes: ByteVector

    The byte representation of the NetworkElement

    The byte representation of the NetworkElement

    Definition Classes
    LnCurrencyUnitNetworkElement
  18. def bytesLE: ByteVector

    The byte representation of the NetworkElement in little endian

    The byte representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. def compare(ln: LnCurrencyUnit): Int
    Definition Classes
    LnCurrencyUnit → Ordered
  21. def compareTo(that: LnCurrencyUnit): Int
    Definition Classes
    Ordered → Comparable
  22. def encodedBytes: ByteVector
  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def equals(obj: Any): Boolean
    Definition Classes
    LnCurrencyUnit → AnyRef → Any
  25. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  26. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def hex: String

    The hexadecimal representation of the NetworkElement

    The hexadecimal representation of the NetworkElement

    Definition Classes
    NetworkElement
  29. def hexLE: String

    The hexadecimal representation of the NetworkElement in little endian

    The hexadecimal representation of the NetworkElement in little endian

    Definition Classes
    NetworkElement
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def multiplySafe(factor: LnCurrencyUnit): Try[LnCurrencyUnit]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the * operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  32. def multiplySafe(factor: BigInt): Try[LnCurrencyUnit]

    Some classes have restrictions on upper bounds for it's underlying value.

    Some classes have restrictions on upper bounds for it's underlying value. This might cause the * operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def subtractSafe(n: LnCurrencyUnit): Try[LnCurrencyUnit]

    Some classes have restrictions on lower bounds for it's underlying value.

    Some classes have restrictions on lower bounds for it's underlying value. This might cause the - operator to throw. This method wraps it in a Try block.

    Definition Classes
    BasicArithmetic
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def toEncodedString: String

    This returns the string encoding defined in BOLT11 For instance, 100 PicoBitcoins would appear as "100p"

  39. def toInt: Int
  40. def toLong: Long
  41. def toMSat: MilliSatoshis
  42. def toPicoBitcoinDecimal: BigDecimal
  43. def toPicoBitcoinValue: BigInt
  44. def toPicoBitcoins: PicoBitcoins
  45. def toSatoshis: Satoshis
  46. def toString(): String
    Definition Classes
    LnCurrencyUnit → AnyRef → Any
  47. def toUInt5s: Vector[UInt5]
  48. def unary_-: LnCurrencyUnit
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Ordered[LnCurrencyUnit]

Inherited from Comparable[LnCurrencyUnit]

Inherited from NetworkElement

Inherited from AnyRef

Inherited from Any

Ungrouped