Uses of Enum Class
java.sql.JDBCType

Packages that useJDBCType
Package
Description
java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language.
  • Uses ofJDBCType injava.sql

    Subclasses with type arguments of typeJDBCType injava.sql
    Modifier and Type
    Class
    Description
    enum 
    Defines the constants that are used to identify generic SQL types, called JDBC types.
    Methods injava.sql that returnJDBCType
    Modifier and Type
    Method
    Description
    staticJDBCType
    JDBCType.valueOf(int type)
    Returns theJDBCType that corresponds to the specifiedTypes value
    staticJDBCType
    JDBCType.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    staticJDBCType[]
    JDBCType.values()
    Returns an array containing the constants of this enum class, inthe order they are declared.