Enum Class JdbcTypesEnum

java.lang.Object
java.lang.Enum<JdbcTypesEnum>
org.springframework.integration.jdbc.config.JdbcTypesEnum
All Implemented Interfaces:
Serializable, Comparable<JdbcTypesEnum>, Constable

public enum JdbcTypesEnum extends Enum<JdbcTypesEnum>
This Enumeration provides a handy wrapper around Types. This makes it possible to look up String representation of the enum constant's name, and thus looking up the respective JDBC Type (int-value).
Since:
2.1
Author:
Gunnar Hillert
  • Enum Constant Details

  • Method Details

    • values

      public static JdbcTypesEnum[] 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 JdbcTypesEnum 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
    • getCode

      public int getCode()
      Get the numerical representation of the JDBC Type enum. The numerical value matches exactly the equivalent value in Types
      Returns:
      The numerical representation of the constant.
    • convertToJdbcTypesEnum

      public static JdbcTypesEnum convertToJdbcTypesEnum(String sqlTypeAsString)
      Retrieve the matching enum constant for a provided String representation of the SQL Types. The provided name must match exactly the identifier as used to declare the enum constant.
      Parameters:
      sqlTypeAsString - Name of the enum to convert. Must be not null and not empty.
      Returns:
      The enumeration that matches. Returns Null of no match was found.