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
- Alphabetic
- By Inheritance
Inherited
- TopLevelValue
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- 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
ifnameUnsafe
is not a valid instance name. It is up to the caller to fail more gracefully.
- lazy val asHelpItem: Item
- val nameUnsafe: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val summary: String
- val topic: Seq[String]
- val value: T