CordaDb

enum CordaDb

Corda database types.

persistenceUnitName also used as ID for the connection in the db_connections table where that is applicable. Not all database types will have such a row with a fixed connection name because they might be defining entities available under multiple schemas named dynamically at run time. Likewise, a database type might have no entities defined under it, where the connection is only used to administer other schemas.

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open fun valueOf(name: String): CordaDb

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
open fun values(): Array<CordaDb>

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Properties

Link copied to clipboard
@get:NotNull
val persistenceUnitName: String