Uses of Class
com.github.drinkjava2.jdialects.Type

Packages that use Type
com.github.drinkjava2.jdialects   
com.github.drinkjava2.jdialects.id   
com.github.drinkjava2.jdialects.model   
 

Uses of Type in com.github.drinkjava2.jdialects
 

Fields in com.github.drinkjava2.jdialects with type parameters of type Type
protected  Map<Type,String> Dialect.typeMappings
           
 

Methods in com.github.drinkjava2.jdialects that return Type
static Type TypeUtils.javaSqlTypeToDialectType(int javaSqlType)
          Convert java.sql.Types.xxx type to Dialect's Type
static Type TypeUtils.toType(Class<?> clazz)
          Convert a Class type to Dialect's Type
static Type TypeUtils.toType(String columnDef)
          Convert column definition String to Dialect's Type
static Type Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Type[] Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.github.drinkjava2.jdialects that return types with arguments of type Type
 Map<Type,String> Dialect.getTypeMappings()
          Get Type mapping features key-value Map of current dialect
 

Methods in com.github.drinkjava2.jdialects with parameters of type Type
static Class<?> TypeUtils.dialectTypeToJavaType(Type type)
           
 Object Dialect.getNexID(IdGenerator idGenerator, NormalJdbcTool jdbc, Type dataType)
          Return next ID by given IdGenerator and NormalJdbcStyle instance
 String Dialect.translateToDDLType(Type type, Integer... lengths)
          Transfer com.github.drinkjava2.jdialects.Type to a real dialect's type definition DDL String, lengths is optional for some types
 

Uses of Type in com.github.drinkjava2.jdialects.id
 

Methods in com.github.drinkjava2.jdialects.id with parameters of type Type
 Object UUIDAnyGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object UUID36Generator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object UUID32Generator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object UUID25Generator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object TimeStampIdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object TableIdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
          Get the next Table Generator ID
 Object SortedUUIDGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object SnowflakeGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object SequenceIdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object IdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
          Get the next ID generated by implementation of IdGenerator
 Object IdentityIdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 Object AutoIdGenerator.getNextID(NormalJdbcTool jdbc, Dialect dialect, Type dataType)
           
 

Uses of Type in com.github.drinkjava2.jdialects.model
 

Methods in com.github.drinkjava2.jdialects.model that return Type
 Type ColumnModel.getColumnType()
           
 

Methods in com.github.drinkjava2.jdialects.model with parameters of type Type
 void ColumnModel.setColumnType(Type columnType)
           
 



Copyright © 2018. All rights reserved.