object LightTransactionViewTree extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LightTransactionViewTree
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class InvalidLightTransactionViewTree(message: String) extends RuntimeException with Product with Serializable
  2. case class InvalidLightTransactionViewTreeSequence(message: String) extends RuntimeException with Product with Serializable

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. def apply(tree: GenTransactionTree): LightTransactionViewTree

    Exceptions thrown

    InvalidLightTransactionViewTree if the tree is not a legal lightweight transaction view tree

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def create(tree: GenTransactionTree): Either[String, LightTransactionViewTree]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fromByteString(hashOps: HashOps)(bytes: ByteString): Either[String, LightTransactionViewTree]
  11. def fromProtoV0(hashOps: HashOps)(protoT: protocol.v0.LightTransactionViewTree): Either[String, LightTransactionViewTree]
  12. def fromProtoVersioned(hashOps: HashOps)(protoT: VersionedLightTransactionViewTree): Either[String, LightTransactionViewTree]
  13. def fromTransactionViewTree(tvt: TransactionViewTree): LightTransactionViewTree

    Turns a full transaction view tree into a lightweight one.

    Turns a full transaction view tree into a lightweight one. Not stack-safe.

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toAllFullViewTrees(trees: NonEmptyList[LightTransactionViewTree]): Either[InvalidLightTransactionViewTreeSequence, NonEmptyList[TransactionViewTree]]

    Get all the full transaction view trees described by a sequence of lightweight trees.

    Get all the full transaction view trees described by a sequence of lightweight trees.

    Note that this repeats subtrees. More precisely, the following holds: toAllFullViewTrees(GenTransactionTree.allLightTransactionViewTrees) == (GenTransactionTree.allTransactionViewTrees)

  22. def toFullViewTree(trees: List[LightTransactionViewTree]): Either[InvalidLightTransactionViewTreeSequence, (TransactionViewTree, List[LightTransactionViewTree])]

    Converts the prefix of a sequence of lightweight transaction view trees into a full tree, returning the unused suffix.

    Converts the prefix of a sequence of lightweight transaction view trees into a full tree, returning the unused suffix.

    The unused suffix normally describes other full transaction view trees, and the function may be called again on the suffix. Errors on an empty sequence, or a sequence whose prefix doesn't describe a full transaction view tree.

  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def toToplevelFullViewTrees(trees: NonEmptyList[LightTransactionViewTree]): Either[InvalidLightTransactionViewTreeSequence, NonEmptyList[TransactionViewTree]]

    Returns the top-level full transaction view trees described by a sequence of lightweight ones

  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. 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 AnyRef

Inherited from Any

Ungrouped