Enum RDBBlobStoreDB

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RDBBlobStoreDB>

    public enum RDBBlobStoreDB
    extends java.lang.Enum<RDBBlobStoreDB>
    Defines variation in the capabilities of different RDBs.
    • Method Detail

      • values

        public static RDBBlobStoreDB[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RDBBlobStoreDB c : RDBBlobStoreDB.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RDBBlobStoreDB valueOf​(java.lang.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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • checkVersion

        public java.lang.String checkVersion​(java.sql.DatabaseMetaData md)
                                      throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getDataTableCreationStatement

        public java.lang.String getDataTableCreationStatement​(java.lang.String tableName)
      • getMetaTableCreationStatement

        public java.lang.String getMetaTableCreationStatement​(java.lang.String tableName)
      • getAdditionalDiagnostics

        @NotNull
        public @NotNull java.util.Map<java.lang.String,​java.lang.String> getAdditionalDiagnostics​(RDBConnectionHandler ch,
                                                                                                        java.lang.String tableName)
      • evaluateDiagnostics

        @Nullable
        public @Nullable java.lang.String evaluateDiagnostics​(java.util.Map<java.lang.String,​java.lang.String> diags)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<RDBBlobStoreDB>
      • getValue

        @NotNull
        public static @NotNull RDBBlobStoreDB getValue​(java.lang.String desc)