Enum CordaDb

  • All Implemented Interfaces:

    
    public 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.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Method Summary

      Modifier and Type Method Description
      static Array<CordaDb> values() Returns an array containing the constants of this enum type, in the order they're declared.
      static CordaDb valueOf(String name) Returns the enum constant of this type with the specified name.
      String getPersistenceUnitName()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • values

         static Array<CordaDb> values()

        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.

      • valueOf

         static CordaDb valueOf(String name)

        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.)