Dictionary

com.digitalasset.transcode.schema.Dictionary
See theDictionary companion object
case class Dictionary[T](entities: Seq[Template[T]], strictPackageMatching: Boolean)

Dictionary of templates, keys, choice arguments and choice results.

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def choiceArgument(templateId: Identifier, choiceName: ChoiceName): T
def choiceResult(templateId: Identifier, choiceName: ChoiceName): T
def filterIdentifiers(filter: Identifier => Boolean): Dictionary[T]
def getChoiceArgument(templateId: Identifier, choiceName: ChoiceName): Option[T]
def getChoiceResult(templateId: Identifier, choiceName: ChoiceName): Option[T]
def getTemplate(templateId: Identifier): Option[T]
def getTemplateKey(templateId: Identifier): Option[T]
def map[U](f: T => U): Dictionary[U]
def payloads: Seq[T]
def template(templateId: Identifier): T
def templateKey(templateId: Identifier): T
def useStrictPackageMatching(flag: Boolean): Dictionary[T]
def zip[U](other: Dictionary[U]): Dictionary[(T, U)]
def zipWith[U, V](other: Dictionary[U])(combine: (T, U) => V): Dictionary[V]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product