ObjectDigestInterface
interface ObjectDigestInterface
The digest of an Object.
Inheritors
| ObjectDigest |
Functions
| Name | Summary |
|---|---|
| isAlive | abstract fun isAlive(): Boolean Returns whether the digest represents an object that is neither deleted nor wrapped. |
| isDeleted | abstract fun isDeleted(): Boolean Returns whether the digest represents a deleted object. |
| isWrapped | abstract fun isWrapped(): Boolean Returns whether the digest represents an object wrapped in another object. |
| nextLexicographical | abstract fun nextLexicographical(): ObjectDigest Returns the next digest in byte-increasing order. |
| nextLexicographicalOpt | abstract fun nextLexicographicalOpt(): ObjectDigest? Returns the next digest in byte-increasing order, or None if the result would overflow. |
| toBase58 | abstract fun toBase58(): String |
| toBytes | abstract fun toBytes(): ByteArray |