Uses of Class
com.j256.ormlite.field.JdbcType

Packages that use JdbcType
com.j256.ormlite.field Object field information. 
 

Uses of JdbcType in com.j256.ormlite.field
 

Methods in com.j256.ormlite.field that return JdbcType
 JdbcType FieldType.getJdbcType()
          Return the JdbcType associated with this.
 JdbcType DatabaseFieldConfig.getJdbcType()
           
static JdbcType JdbcType.lookupClass(Class<?> dataClass)
          Static method that returns the JdbcType associated with the class argument or UNKNOWN if not found.
static JdbcType JdbcType.lookupIdTypeVal(int typeVal)
          Static method that returns the JdbcType associated with the SQL type value or UNKNOWN if UNKNOWN not found.
static JdbcType JdbcType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JdbcType[] JdbcType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.j256.ormlite.field with parameters of type JdbcType
 void DatabaseFieldConfig.setJdbcType(JdbcType jdbcType)
           
 

Constructors in com.j256.ormlite.field with parameters of type JdbcType
DatabaseFieldConfig(String fieldName, String columnName, JdbcType jdbcType, String defaultValue, int width, boolean canBeNull, boolean id, boolean generatedId, String generatedIdSequence, boolean foreign, DatabaseTableConfig<?> foreignTableConfig, boolean useGetSet, Enum<?> unknownEnumValue, boolean throwIfNull)
           
 



Copyright © 2010. All Rights Reserved.