ScalaConverters

com.digitalasset.transcode.scala.ScalaConverters

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def fromBool(dv: DynamicValue): Boolean
def fromContractId[T](viewConv: DynamicValue => T)(dv: DynamicValue): ContractId[T]
def fromDate(dv: DynamicValue): Date
def fromGenMap[K, V](kConv: DynamicValue => K, vConv: DynamicValue => V)(dv: DynamicValue): Map[K, V]
def fromInt64(dv: DynamicValue): Int64
def fromList[A](aConv: DynamicValue => A)(dv: DynamicValue): List[A]
def fromNumeric(dv: DynamicValue): Numeric
def fromOptional[A](aConv: DynamicValue => A)(dv: DynamicValue): Option[A]
def fromParty(dv: DynamicValue): Party
def fromText(dv: DynamicValue): Text
def fromTextMap[V](vConv: DynamicValue => V)(dv: DynamicValue): TextMap[V]
def fromTimestamp(dv: DynamicValue): Timestamp
def fromUnit[A >: Unit](dv: DynamicValue): A
def toBool(value: Boolean): DynamicValue
def toContractId[T](viewConv: T => DynamicValue)(value: ContractId[T]): DynamicValue
def toDate(value: Date): DynamicValue
def toGenMap[K, V](kConv: K => DynamicValue, vConv: V => DynamicValue)(value: Map[K, V]): DynamicValue
def toInt64(value: Int64): DynamicValue
def toList[A](aConv: A => DynamicValue)(value: List[A]): DynamicValue
def toNumeric(value: Numeric): DynamicValue
def toOptional[A](aConv: A => DynamicValue)(value: Option[A]): DynamicValue
def toParty(value: Party): DynamicValue
def toText(value: Text): DynamicValue
def toTextMap[V](vConv: V => DynamicValue)(value: TextMap[V]): DynamicValue
def toTimestamp(value: Timestamp): DynamicValue
def toUnit(unit: Unit): DynamicValue