Enum Class Registry

java.lang.Object
java.lang.Enum<Registry>
org.miaixz.bus.mapper.Registry
All Implemented Interfaces:
Serializable, Comparable<Registry>, Constable

public enum Registry extends Enum<Registry>
主键处理
Since:
Java 17+
Author:
Kimi Liu
  • Enum Constant Details

    • DB2

      public static final Registry DB2
    • MYSQL

      public static final Registry MYSQL
    • SQLSERVER

      public static final Registry SQLSERVER
    • CLOUDSCAPE

      public static final Registry CLOUDSCAPE
    • DERBY

      public static final Registry DERBY
    • HSQLDB

      public static final Registry HSQLDB
    • SYBASE

      public static final Registry SYBASE
    • DB2_MF

      public static final Registry DB2_MF
    • INFORMIX

      public static final Registry INFORMIX
    • DEFAULT

      public static final Registry DEFAULT
    • NULL

      public static final Registry NULL
  • Method Details

    • values

      public static Registry[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Registry valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getDatabaseDialect

      public static Registry getDatabaseDialect(String database)
    • getIdentityRetrievalStatement

      public String getIdentityRetrievalStatement()