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

Packages that use SqlType
com.j256.ormlite.db Per-database type and SQL information. 
com.j256.ormlite.field Object field information. 
com.j256.ormlite.field.types   
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.support Database support classes. 
 

Uses of SqlType in com.j256.ormlite.db
 

Methods in com.j256.ormlite.db that return SqlType
 SqlType BaseDatabaseType.BooleanNumberFieldConverter.getSqlType()
           
 

Uses of SqlType in com.j256.ormlite.field
 

Methods in com.j256.ormlite.field that return SqlType
 SqlType FieldType.getSqlType()
           
 SqlType FieldConverter.getSqlType()
          Return the SQL type that is stored in the database for this argument.
static SqlType SqlType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SqlType[] SqlType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of SqlType in com.j256.ormlite.field.types
 

Methods in com.j256.ormlite.field.types that return SqlType
 SqlType BaseDataType.getSqlType()
           
 

Constructors in com.j256.ormlite.field.types with parameters of type SqlType
BaseDataType(SqlType sqlType, Class<?>[] classes)
           
BaseDateType(SqlType sqlType, Class<?>[] classes)
           
BaseEnumType(SqlType sqlType, Class<?>[] classes)
           
BooleanObjectType(SqlType sqlType, Class<?>[] classes)
           
ByteObjectType(SqlType sqlType, Class<?>[] classes)
           
CharacterObjectType(SqlType sqlType, Class<?>[] classes)
           
DoubleObjectType(SqlType sqlType, Class<?>[] classes)
           
FloatObjectType(SqlType sqlType, Class<?>[] classes)
           
IntegerObjectType(SqlType sqlType, Class<?>[] classes)
           
LongObjectType(SqlType sqlType, Class<?>[] classes)
           
ShortObjectType(SqlType sqlType, Class<?>[] classes)
           
StringType(SqlType sqlType, Class<?>[] classes)
           
 

Uses of SqlType in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return SqlType
 SqlType BaseSelectArg.getSqlType()
           
 SqlType ArgumentHolder.getSqlType()
          Return the SQL type associated with this class.
 

Constructors in com.j256.ormlite.stmt with parameters of type SqlType
BaseSelectArg(SqlType sqlType)
           
SelectArg(SqlType sqlType, Object value)
           
ThreadLocalSelectArg(SqlType sqlType, Object value)
           
 

Uses of SqlType in com.j256.ormlite.support
 

Methods in com.j256.ormlite.support with parameters of type SqlType
 void CompiledStatement.setObject(int parameterIndex, Object obj, SqlType sqlType)
          Set the parameter specified by the index and type to be an object.
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.