B C D F G I J M N P S T U 

B

builder(Class<?>) - 类 中的静态方法me.wuwenbin.sql.entrance.SQLFactory
generate SQLBeanBuilder instance
builder() - 类 中的静态方法me.wuwenbin.sql.entrance.SQLFactory
generate SQLStrBuilder instance

C

countAll() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
无条件统计
countAll(String) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
无条件统计一个表
countAndByColumns(String, String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
AND条件统计一张表的记录
countAndByRouters(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
AND条件统计一个表的记录数
countOrByColumns(String, String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
OR条件统计一张表的记录
countOrByRouters(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
OR条件统计一个表的记录数

D

dealSQL(String) - 类 中的静态方法me.wuwenbin.sql.util.SQLBuilderUtils
最后生成sql时候,做一些字符串处理
deleteByColumns(String, String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
根据指定的列条件删除表中的记录
deleteByPk() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据主键删除表记录
deleteByRouters(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据指定的routers条件删除表中的记录
DeletePkNotExistException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/12.
DeletePkNotExistException() - 异常错误 的构造器me.wuwenbin.sql.exception.DeletePkNotExistException
 
DeleteSQLConditionsNullException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/12.
DeleteSQLConditionsNullException() - 异常错误 的构造器me.wuwenbin.sql.exception.DeleteSQLConditionsNullException
 

F

fieldRoutersInParamRouters(int[], int[]) - 类 中的静态方法me.wuwenbin.sql.util.SQLBuilderUtils
检查字段上的routers是否是方法参数中指定的

G

getAllFieldExceptObject() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
获取所有的成员变量,包括所有父类,除了Object
getAllFieldsExceptObject(Class<?>) - 类 中的静态方法me.wuwenbin.sql.util.SQLBuilderUtils
获取类中所有字段包括父类的protected字段
getBeanClass() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
 
getPkField() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
获取主键变量
getTableName() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
获取当前SQLTable中的表名

I

insertAll(String, int) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
插入所有字段
insertAllPk(boolean) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
插入所有字段
insertAllWithoutPk() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
插入所有字段,除主键外
insertAllWithPk() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
连同主键一起插入
InsertColumnNullException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/12.
InsertColumnNullException() - 异常错误 的构造器me.wuwenbin.sql.exception.InsertColumnNullException
 
insertColumns(String, String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
插入指定字段
insertRoutersPk(boolean, int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
插入指定的routers字段
insertRoutersWithoutPk(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
插入指定的字段,除主键外
insertRoutersWithPk(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
插入指定的字段,连同id一起

J

java2SQL(String, String) - 类 中的静态方法me.wuwenbin.sql.util.SQLDefineUtils
如果用户指定了column的列名就按用户指定的来,没有则驼峰命名转化为下划线命名

M

me.wuwenbin.sql.annotation - 程序包 me.wuwenbin.sql.annotation
 
me.wuwenbin.sql.entrance - 程序包 me.wuwenbin.sql.entrance
 
me.wuwenbin.sql.exception - 程序包 me.wuwenbin.sql.exception
 
me.wuwenbin.sql.factory - 程序包 me.wuwenbin.sql.factory
 
me.wuwenbin.sql.util - 程序包 me.wuwenbin.sql.util
 

N

NotSetPrimaryKeyException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/11.
NotSetPrimaryKeyException(Class<?>) - 异常错误 的构造器me.wuwenbin.sql.exception.NotSetPrimaryKeyException
 

P

PkFieldNotFoundException - me.wuwenbin.sql.exception中的异常错误
字面意思 Created by wuwenbin on 2017/4/17.
PkFieldNotFoundException() - 异常错误 的构造器me.wuwenbin.sql.exception.PkFieldNotFoundException
 

S

selectAll() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
无条件查询所有字段
selectAll(String) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
无条件查询所有
selectAllByColumns(String, String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
AND条件查询所有字段
selectAllByPk() - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据主键id查询所有字段
selectAllByRoutersAnd(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
AND条件查询所有字段
selectPartByColumnsAnd(String, String[], String...) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
AND条件查询所选择的字段
selectPartByPk(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据主键id查询所选字段
selectPartByRoutersAnd(int[], int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
AND条件查询所选择的字段
setBeanClass(Class<?>) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
 
SQLBeanBuilder - me.wuwenbin.sql.factory中的类
根据实体类和注解生成一些常用SQL Created by wuwenbin on 2017/1/9.
SQLBeanBuilder(Class<?>) - 类 的构造器me.wuwenbin.sql.factory.SQLBeanBuilder
 
SQLBuilderUtils - me.wuwenbin.sql.util中的类
some methods of sql building Created by wuwenbin on 2017/1/9.
SQLBuilderUtils() - 类 的构造器me.wuwenbin.sql.util.SQLBuilderUtils
 
SQLColumn - me.wuwenbin.sql.annotation中的注释类型
 
SQLDefineUtils - me.wuwenbin.sql.util中的类
some utils of sql building Created by wuwenbin on 2017/1/9.
SQLDefineUtils() - 类 的构造器me.wuwenbin.sql.util.SQLDefineUtils
 
SQLFactory - me.wuwenbin.sql.entrance中的类
entrance for sql util Created by wuwenbin on 2017/1/12.
SQLStrBuilder - me.wuwenbin.sql.factory中的类
不根据实体类,根据一些参数生成一些常见SQL Created by wuwenbin on 2017/1/9.
SQLStrBuilder() - 类 的构造器me.wuwenbin.sql.factory.SQLStrBuilder
 
SQLTable - me.wuwenbin.sql.annotation中的注释类型
 
SQLTableIsExist(Class<?>) - 类 中的静态方法me.wuwenbin.sql.util.SQLBuilderUtils
bean上是否存在@SQLTable
SQLTableNotFoundException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/9.
SQLTableNotFoundException(Class<?>) - 异常错误 的构造器me.wuwenbin.sql.exception.SQLTableNotFoundException
 

T

TableNameNullException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/10.
TableNameNullException() - 异常错误 的构造器me.wuwenbin.sql.exception.TableNameNullException
 

U

underline2Camel(String) - 类 中的静态方法me.wuwenbin.sql.util.SQLDefineUtils
下划线转驼峰命名
UpdateColumnNullException - me.wuwenbin.sql.exception中的异常错误
异常类 Created by wuwenbin on 2017/1/12.
UpdateColumnNullException() - 异常错误 的构造器me.wuwenbin.sql.exception.UpdateColumnNullException
 
updateColumnsByColumnArray(String, String[], String[]) - 类 中的方法me.wuwenbin.sql.factory.SQLStrBuilder
根据指定列条件更新指定列
UpdatePkNotExistException - me.wuwenbin.sql.exception中的异常错误
未识别的主键,不存在或没标识注解 Created by wuwenbin on 2017/1/12.
UpdatePkNotExistException() - 异常错误 的构造器me.wuwenbin.sql.exception.UpdatePkNotExistException
 
updateRoutersByPk(int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据主键跟新指定routers列
updateRoutersByRouterArray(int[], int[]) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
根据指定的条件routers更新指定的routers列
updateRoutersByRouters(int[], int...) - 类 中的方法me.wuwenbin.sql.factory.SQLBeanBuilder
同updateRoutersByRouterArray,参数类型换为不不定式
B C D F G I J M N P S T U 

Copyright © 2017. All rights reserved.