Uses of Interface
org.mentabean.DBType

Packages that use DBType
org.mentabean   
org.mentabean.jdbc   
org.mentabean.type   
 

Uses of DBType in org.mentabean
 

Methods in org.mentabean that return DBType
static DBType<?> DBTypes.from(Class<? extends Object> klass)
           
 DBType DBField.getType()
           
 

Methods in org.mentabean with parameters of type DBType
 BeanConfig BeanConfig.field(String name, DBType<? extends Object> type)
          Add a database field for the given property with the given database type.
 BeanConfig BeanConfig.field(String name, String dbName, DBType<? extends Object> type)
          Add a database field for the given property with the given database type.
 BeanConfig BeanConfig.pk(String name, DBType<? extends Object> type)
          Add a bean property that is the primary key in the database.
 BeanConfig BeanConfig.pk(String name, String dbName, DBType<? extends Object> type)
          Add a property that is the primary key in the database.
 

Constructors in org.mentabean with parameters of type DBType
DBField(String name, String dbName, DBType<?> type, boolean isPK)
           
 

Uses of DBType in org.mentabean.jdbc
 

Methods in org.mentabean.jdbc with parameters of type DBType
protected  String MySQLBeanSession.getDatabaseType(DBType<?> dbType)
           
protected  String H2BeanSession.getDatabaseType(DBType<?> dbType)
           
protected  String AnsiSQLBeanSession.getDatabaseType(DBType<?> dbType)
          Each dialect can override this to return the database column type it supports other than the ANSI standard.
 

Uses of DBType in org.mentabean.type
 

Classes in org.mentabean.type that implement DBType
 class AutoIncrementType
           
 class AutoTimestampType
           
 class BigDecimalType
           
 class BooleanIntType
           
 class BooleanStringType
           
 class DateType
           
 class DoubleType
           
 class EnumIdType
           
 class EnumValueType
           
 class FloatType
           
 class IntegerType
           
 class LongType
           
 class NowOnInsertAndUpdateTimestampType
           
 class NowOnInsertTimestampType
           
 class NowOnUpdateTimestampType
           
 class SequenceType
           
 class StringType
           
 class TimestampType
           
 class TimeType
           
 



Copyright © 2012. All Rights Reserved.