com.digitalasset.canton.admin.participant.v30
ContractIdImportMode
Companion class ContractIdImportMode
object ContractIdImportMode extends GeneratedEnumCompanion[ContractIdImportMode]
- Alphabetic
- By Inheritance
- ContractIdImportMode
- GeneratedEnumCompanion
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed trait Recognized extends ContractIdImportMode
- final case class Unrecognized(unrecognizedValue: Int) extends ContractIdImportMode with UnrecognizedEnum with Product with Serializable
- Annotations
- @SerialVersionUID()
- type ValueType = ContractIdImportMode
- Definition Classes
- GeneratedEnumCompanion
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- implicit def enumCompanion: GeneratedEnumCompanion[ContractIdImportMode]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromName(name: String): Option[ContractIdImportMode]
- Definition Classes
- GeneratedEnumCompanion
- def fromValue(__value: Int): ContractIdImportMode
- Definition Classes
- ContractIdImportMode → GeneratedEnumCompanion
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def javaDescriptor: EnumDescriptor
- Definition Classes
- ContractIdImportMode → GeneratedEnumCompanion
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def scalaDescriptor: EnumDescriptor
- Definition Classes
- ContractIdImportMode → GeneratedEnumCompanion
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- lazy val values: Seq[ValueType]
- Definition Classes
- ContractIdImportMode → GeneratedEnumCompanion
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- case object CONTRACT_ID_IMPORT_MODE_ACCEPT extends ContractIdImportMode with Recognized with Product with Serializable
The contract ID neither gets validated nor recomputed.
The contract ID neither gets validated nor recomputed. Allows to save time for large imports where it has been otherwise ensured that the contract ID suffix matches the scheme associated to the synchronizer.
- Annotations
- @SerialVersionUID()
- case object CONTRACT_ID_IMPORT_MODE_RECOMPUTATION extends ContractIdImportMode with Recognized with Product with Serializable
Any contract ID suffix will be recomputed to match the scheme associated to the synchronizer.
Any contract ID suffix will be recomputed to match the scheme associated to the synchronizer.
- Annotations
- @SerialVersionUID()
- case object CONTRACT_ID_IMPORT_MODE_UNSPECIFIED extends ContractIdImportMode with Recognized with Product with Serializable
- Annotations
- @SerialVersionUID()
- case object CONTRACT_ID_IMPORT_MODE_VALIDATION extends ContractIdImportMode with Recognized with Product with Serializable
The service will fail if any contract ID suffix doesn't match the scheme associated to the synchronizer where the contract is being assigned as a result of the import.
The service will fail if any contract ID suffix doesn't match the scheme associated to the synchronizer where the contract is being assigned as a result of the import.
- Annotations
- @SerialVersionUID()