object ContractImportMode extends GeneratedEnumCompanion[ContractImportMode]
- Alphabetic
- By Inheritance
- ContractImportMode
- GeneratedEnumCompanion
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed trait Recognized extends ContractImportMode
- final case class Unrecognized(unrecognizedValue: Int) extends ContractImportMode with UnrecognizedEnum with Product with Serializable
- Annotations
- @SerialVersionUID()
- type ValueType = ContractImportMode
- 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]) @native()
- implicit def enumCompanion: GeneratedEnumCompanion[ContractImportMode]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromName(name: String): Option[ContractImportMode]
- Definition Classes
- GeneratedEnumCompanion
- def fromValue(__value: Int): ContractImportMode
- Definition Classes
- ContractImportMode → GeneratedEnumCompanion
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def javaDescriptor: EnumDescriptor
- Definition Classes
- ContractImportMode → GeneratedEnumCompanion
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def scalaDescriptor: EnumDescriptor
- Definition Classes
- ContractImportMode → 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
- ContractImportMode → GeneratedEnumCompanion
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- case object CONTRACT_IMPORT_MODE_ACCEPT extends ContractImportMode with Recognized with Product with Serializable
A contract is imported without validation.
A contract is imported without validation. This option is suitable for large imports when the participant operator is confident that all contracts are valid for their associated representative package-id.
- Annotations
- @SerialVersionUID()
- case object CONTRACT_IMPORT_MODE_UNSPECIFIED extends ContractImportMode with Recognized with Product with Serializable
Default enum value that indicates the ContractImportMode field was not explicitly set.
Default enum value that indicates the ContractImportMode field was not explicitly set. Requests with this value will fail validation and be rejected.
- Annotations
- @SerialVersionUID()
- case object CONTRACT_IMPORT_MODE_VALIDATION extends ContractImportMode with Recognized with Product with Serializable
Upon import, each contract is validated, including authentication of its contract ID.
Upon import, each contract is validated, including authentication of its contract ID. The operation will fail if any contract does not pass validation.
This is the recommended option for most import scenarios.
- Annotations
- @SerialVersionUID()