Packages

case class TopLevelValue[T](nameUnsafe: String, summary: String, value: T, topic: Seq[String] = Seq())(implicit tag: scala.reflect.api.JavaUniverse.TypeTag[T]) extends Product with Serializable

Holder for top level values including their name, their value, and a description to display when help is printed.

Attributes
protected
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TopLevelValue
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TopLevelValue(nameUnsafe: String, summary: String, value: T, topic: Seq[String] = Seq())(implicit tag: scala.reflect.api.JavaUniverse.TypeTag[T])

Value Members

  1. lazy val asBind: Bind[T]

    The name is surrounded with back-ticks to enforce valid scala identifier.

    The name is surrounded with back-ticks to enforce valid scala identifier.

    Exceptions thrown

    com.digitalasset.canton.config.CantonRequireTypes$.InstanceName$.InvalidInstanceName if nameUnsafe is not a valid instance name. It is up to the caller to fail more gracefully.

  2. lazy val asHelpItem: Item
  3. val nameUnsafe: String
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val summary: String
  6. val topic: Seq[String]
  7. val value: T