跳过导航链接
A B C D E F G H I J K L M N O P Q R S T U V X 

A

AbstractCacheService - com.gitee.qdbp.tools.cache中的类
实现默认方法的缓存服务接口
AbstractCacheService() - 类 的构造器com.gitee.qdbp.tools.cache.AbstractCacheService
 
AbstractCacheService.Aware - com.gitee.qdbp.tools.cache中的接口
 
addBarData(String, double...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
addBarData(String, double...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
addColumn(ColumnInfo) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
增加列信息
addColumn(FieldInfo) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
增加字段名称信息
addColumns(List<ColumnInfo>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
增加列信息
addCondition(CellValueCondition.Item) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
addCondition(int, String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
addCopyConcatFields(CopyConcat...) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
增加字段复制合并参数
addData(double...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.RowItem
 
addData(String, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
增加数据列表项, 如果idx已存在则合并数据
addFailed(String, int, IResultMessage) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
整行失败
addFailed(String, int, String, Object, IResultMessage) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
具体某一列失败(注意:字段名和字段值都填在field这里, value的值不用于前端显示)
addHeader(String, String) - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
追加header参数
addItem(BeanGroup) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
addLineData(String, double...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
addLineData(String, double...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
addMergers(MergeMetadata...) - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
增加合并参数
addParam(MultipartEntityBuilder, String, Object, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
 
addPlain(String...) - 类 中的方法com.gitee.qdbp.tools.specialized.KeywordHandler
增加普通关键字(原文,不分词)
addRowData(List<RowItem>, String, double...) - 类 中的静态方法com.gitee.qdbp.tools.chart.entity.RowItem
 
addRule(String, String[]) - 类 中的方法com.gitee.qdbp.tools.excel.rule.MapRule
 
addRule(String, List<CellRule>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
增加转换规则
addRules(Map<String, String[]>) - 类 中的方法com.gitee.qdbp.tools.excel.rule.MapRule
 
addSegment(String...) - 类 中的方法com.gitee.qdbp.tools.specialized.KeywordHandler
增加已经分词的关键字
addSkipRowWhen(MatchesRowCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
增加跳过某行的关键字
addSourceFields(String...) - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
增加源字段
addText(String...) - 类 中的方法com.gitee.qdbp.tools.specialized.KeywordHandler
增加文本关键字(中文分词)
addTotal(int) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
增加记录总数
addValue(String, Object) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
增加值列表项

B

BarAndLineDataset - com.gitee.qdbp.tools.chart.entity中的类
水果销售情况(万元) 品种一季度二季度三季度四季度 苹果586000478000524000628000 柚子502000423000480000540000 香蕉475000412000382000468000 环比增长率1.150.981.281.42 BarAndLineDataset dataset = new BarAndLineDataset(); dataset.setChartTitle("水果销售情况"); dataset.setBarTitle("销售量"); dataset.setLineTitle("增长率"); dataset.setBarUnits("元,万元,亿元"); // 自动根据数据选择单位 dataset.setLineUnits("%"); dataset.setColumnLabels("一季度", "二季度", "三季度", "四季度"); dataset.addBarData("苹果", 586000, 478000, 524000, 628000); dataset.addBarData("柚子", 502000, 423000, 480000, 540000); dataset.addBarData("香蕉", 475000, 412000, 382000, 468000); dataset.addLineData("环比增长率", 1.15, 0.98, 1.28, 1.42); ChartBusinessTools.createBarAndLineChart1(dataset, response.getOutputStream(), 600, 400);
BarAndLineDataset() - 类 的构造器com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
BarDataset - com.gitee.qdbp.tools.chart.entity中的类
水果销售情况(万元) 品种一季度二季度三季度四季度 苹果586000478000524000628000 柚子502000423000480000540000 香蕉475000412000382000468000 BarAndLineDataset dataset = new BarAndLineDataset(); dataset.setChartTitle("水果销售情况"); dataset.setBarTitle("销售量"); dataset.setBarUnits("元,万元,亿元"); // 自动根据数据选择单位 dataset.setColumnLabels("一季度", "二季度", "三季度", "四季度"); dataset.addBarData("苹果", 586000, 478000, 524000, 628000); dataset.addBarData("柚子", 502000, 423000, 480000, 540000); dataset.addBarData("香蕉", 475000, 412000, 382000, 468000); ChartBusinessTools.createBarChart1(dataset, response.getOutputStream(), 600, 400);
BarDataset() - 类 的构造器com.gitee.qdbp.tools.chart.entity.BarDataset
 
BaseCacheService - com.gitee.qdbp.tools.cache中的类
基础缓存类
BaseCacheService() - 类 的构造器com.gitee.qdbp.tools.cache.BaseCacheService
 
BaseHttpHandler - com.gitee.qdbp.tools.http中的类
 
BaseHttpHandler() - 类 的构造器com.gitee.qdbp.tools.http.BaseHttpHandler
 
BeanContainer - com.gitee.qdbp.tools.excel.json中的类
Bean容器
BeanContainer() - 类 的构造器com.gitee.qdbp.tools.excel.json.BeanContainer
 
BeanGroup - com.gitee.qdbp.tools.excel.json中的类
Bean分组
BeanGroup(String) - 类 的构造器com.gitee.qdbp.tools.excel.json.BeanGroup
 
BeanGroup(String, String) - 类 的构造器com.gitee.qdbp.tools.excel.json.BeanGroup
 
beanToMap(Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将Java对象转换为Map
copy from fastjson JSON.toJSON(), 保留enum和date
beanToMap(Object, boolean, boolean) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将Java对象转换为Map
between(Number, Object, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
数字范围判断
between(Date, Object, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
日期范围判断
BoldHeiti(int) - 类 的构造器com.gitee.qdbp.tools.chart.HeitiFont.BoldHeiti
 
build(String, Object) - 类 中的方法com.gitee.qdbp.tools.excel.rule.RuleFactory
 
build(Object) - 接口 中的方法com.gitee.qdbp.tools.excel.rule.RuleFactory.RuleBuilder
 

C

callback(Map<String, Object>, RowInfo) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
具体的业务处理逻辑, 一般是插入数据库之类的持久化操作
castToList(String, Object, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
将value转换为List, key只是用于记日志
CellInfo - com.gitee.qdbp.tools.excel.model中的类
单元格信息
CellInfo() - 类 的构造器com.gitee.qdbp.tools.excel.model.CellInfo
 
CellInfo(Integer, String, String, boolean) - 类 的构造器com.gitee.qdbp.tools.excel.model.CellInfo
 
CellRule - com.gitee.qdbp.tools.excel.rule中的接口
单元格转换规则, 同时负责导入和导出的转换
CellValueCondition - com.gitee.qdbp.tools.excel.condition中的类
单元格值的判断条件
CellValueCondition() - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
CellValueCondition(CellValueCondition.Item...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
CellValueCondition(List<CellValueCondition.Item>) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
CellValueCondition.Item - com.gitee.qdbp.tools.excel.condition中的类
 
CellValueContainsTextCondition - com.gitee.qdbp.tools.excel.condition中的类
单元格值包含指定文本的判断条件
CellValueContainsTextCondition() - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueContainsTextCondition
 
CellValueContainsTextCondition(CellValueCondition.Item...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueContainsTextCondition
 
CellValueContainsTextCondition(List<CellValueCondition.Item>) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueContainsTextCondition
 
CellValueEqualsTextCondition - com.gitee.qdbp.tools.excel.condition中的类
单元格值等于指定文本的判断条件
CellValueEqualsTextCondition() - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueEqualsTextCondition
 
CellValueEqualsTextCondition(CellValueCondition.Item...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueEqualsTextCondition
 
CellValueEqualsTextCondition(List<CellValueCondition.Item>) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueEqualsTextCondition
 
charset - 类 中的变量com.gitee.qdbp.tools.http.HttpTools
 
ChartBusinessTools - com.gitee.qdbp.tools.chart中的类
图表业务工具类
ChartBusinessTools() - 类 的构造器com.gitee.qdbp.tools.chart.ChartBusinessTools
 
ChartThemeTools - com.gitee.qdbp.tools.chart中的类
JFreeChart风格工具类
解决中文乱码问题
用来对柱状图、折线图、饼图、堆积柱状图、时间序列图的样式进行渲染
设置X-Y坐标轴样式
ChartThemeTools() - 类 的构造器com.gitee.qdbp.tools.chart.ChartThemeTools
 
ClearRule - com.gitee.qdbp.tools.excel.rule中的类
清除规则
ClearRule(String) - 类 的构造器com.gitee.qdbp.tools.excel.rule.ClearRule
 
ClearRule(Pattern) - 类 的构造器com.gitee.qdbp.tools.excel.rule.ClearRule
 
columnIndexToName(int) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
列序号转换为列名
1 = A, 27 = AA, 37 = AK, 216 = HH
ColumnInfo - com.gitee.qdbp.tools.excel.model中的类
列信息
ColumnInfo() - 类 的构造器com.gitee.qdbp.tools.excel.model.ColumnInfo
 
ColumnInfo(Integer, String, String, boolean) - 类 的构造器com.gitee.qdbp.tools.excel.model.ColumnInfo
 
columnNameToIndex(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
列名转换为列序号
A = 1, AA = 27, AK = 37, HH = 216
com.gitee.qdbp.tools.cache - 程序包 com.gitee.qdbp.tools.cache
 
com.gitee.qdbp.tools.chart - 程序包 com.gitee.qdbp.tools.chart
 
com.gitee.qdbp.tools.chart.entity - 程序包 com.gitee.qdbp.tools.chart.entity
 
com.gitee.qdbp.tools.excel - 程序包 com.gitee.qdbp.tools.excel
 
com.gitee.qdbp.tools.excel.condition - 程序包 com.gitee.qdbp.tools.excel.condition
 
com.gitee.qdbp.tools.excel.exception - 程序包 com.gitee.qdbp.tools.excel.exception
 
com.gitee.qdbp.tools.excel.json - 程序包 com.gitee.qdbp.tools.excel.json
 
com.gitee.qdbp.tools.excel.model - 程序包 com.gitee.qdbp.tools.excel.model
 
com.gitee.qdbp.tools.excel.rule - 程序包 com.gitee.qdbp.tools.excel.rule
 
com.gitee.qdbp.tools.excel.utils - 程序包 com.gitee.qdbp.tools.excel.utils
 
com.gitee.qdbp.tools.files - 程序包 com.gitee.qdbp.tools.files
 
com.gitee.qdbp.tools.http - 程序包 com.gitee.qdbp.tools.http
 
com.gitee.qdbp.tools.instance - 程序包 com.gitee.qdbp.tools.instance
 
com.gitee.qdbp.tools.specialized - 程序包 com.gitee.qdbp.tools.specialized
 
com.gitee.qdbp.tools.utils - 程序包 com.gitee.qdbp.tools.utils
 
compareDatas(List<T>, String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对结果集
compareDatas(List<T>, String, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对结果集
compareDatas(List<T>, String, List<String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对结果集
compareDatas(List<T>, String, List<String>, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对结果集
compareDatasOf(List<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据集, 入参是源数据集, 自己是期望数据集
compareDatasOf(List<T>, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据集, 入参是源数据集, 自己是期望数据集
compareDatasOf(List<T>, List<String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据集, 入参是源数据集, 自己是期望数据集
compareDatasOf(List<T>, List<String>, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据集, 入参是源数据集, 自己是期望数据集
compareValues(List<T>, String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对数据列表
compareValues(List<T>, String, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
核对数据列表
compareValuesOf(List<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据列表, 入参是源数据, 自己是期望数据
compareValuesOf(List<T>, Map<String, String>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
核对数据列表, 入参是源数据, 自己是期望数据
concat(String, String...) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
config - 类 中的变量com.gitee.qdbp.tools.http.ConfigHttpHandler
 
config - 类 中的变量com.gitee.qdbp.tools.http.HttpExecutor
 
Config - com.gitee.qdbp.tools.utils中的类
加载配置文件
根据文件扩展名决定加载方式, 支持:txt|xml|properties, 其他都按properties处理
支持引用其他配置项
key.a = {config:key.b}
可以通过<<include>>标签导入其他配置文件
<<include>> = rules.txt
<<include.rules>> = rules.txt
<<include.sql>> = ..
Config() - 类 的构造器com.gitee.qdbp.tools.utils.Config
 
Config(Properties) - 类 的构造器com.gitee.qdbp.tools.utils.Config
 
Config(String) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(String, PropertyTools.Options) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(String[]) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(String[], PropertyTools.Options) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(URL) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(URL, PropertyTools.Options) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(URL[]) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
Config(URL[], PropertyTools.Options) - 类 的构造器com.gitee.qdbp.tools.utils.Config
构造函数
ConfigHttpHandler - com.gitee.qdbp.tools.http中的类
 
ConfigHttpHandler() - 类 的构造器com.gitee.qdbp.tools.http.ConfigHttpHandler
 
contentType - 类 中的变量com.gitee.qdbp.tools.http.HttpTools
 
convert(String, List<ToJsonMetadata>) - 类 中的静态方法com.gitee.qdbp.tools.excel.json.ExcelToJson
执行数据转换
List metadata = ToJsonProperties.parseMetadata(Properties)
Map result = ExcelToJson.convert(folder, metadata);
convert(String, ToJsonMetadata) - 类 中的静态方法com.gitee.qdbp.tools.excel.json.ExcelToJson
执行数据转换
List<Map> result = ExcelToJson.convert(folder, metadata);
convert(CellInfo, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
单元格字段转换, data.put(cellInfo.getField(), cellInfo.getValue());
convert(String, Object, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
单元格字段转换
convert(CellInfo, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
单元格字段转换, data.put(cellInfo.getField(), cellInfo.getValue());
convert(String, Object, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
单元格字段转换, 如果转换失败则直接抛异常
copyCell(Cell, Cell, boolean) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
复制单元格
CopyConcat - com.gitee.qdbp.tools.excel.model中的类
字段复制合并参数
将多个字段复制合并到一个字段
CopyConcat() - 类 的构造器com.gitee.qdbp.tools.excel.model.CopyConcat
 
copyConcat(Map<String, Object>, List<CopyConcat>) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
将多个字段复制合并到一个字段
copyRow(Row, Row, boolean) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
复制行
copySheet(Sheet, Sheet, boolean) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
复制Sheet
TODO 目前只复制了部分属性, 另外复制前景色和背景色有问题
CountLogWatcher(boolean) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger.CountLogWatcher
构造函数
CountLogWatcher(boolean, Class<?>) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger.CountLogWatcher
构造函数
CountLogWatcher(boolean, String) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger.CountLogWatcher
构造函数
createBarAndLineChart1(BarAndLineDataset, OutputStream, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图+折线图
createBarAndLineChart1(BarAndLineDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图+折线图
createBarAndLineImage1(BarAndLineDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图+折线图
createBarChart1(BarDataset, OutputStream, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图
createBarChart1(BarDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图
createBarImage1(BarDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建柱状图
createHash(String) - 类 中的方法com.gitee.qdbp.tools.specialized.PasswordHash
加盐处理密码,返回处理后的hash
createHash(char[]) - 类 中的方法com.gitee.qdbp.tools.specialized.PasswordHash
加盐处理密码,返回处理后的hash
createLineChart1(LineDataset, OutputStream, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建折线图
createLineChart1(LineDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建折线图
createLineImage1(LineDataset, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartBusinessTools
创建折线图

D

DateRule - com.gitee.qdbp.tools.excel.rule中的类
日期转换规则
DateRule(String) - 类 的构造器com.gitee.qdbp.tools.excel.rule.DateRule
构造函数
DEFAULT - 类 中的静态变量com.gitee.qdbp.tools.specialized.PasswordHash
 
del(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
del(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除KEY
del(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除KEY
del(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
删除KEY
deserializeFeilds(Map<String, String>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
deserializeList(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
deserializeValue(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
DETAILS - 类 中的静态变量com.gitee.qdbp.tools.instance.ExceptionLogger
记录详细日志的实例
done(T) - 类 中的方法com.gitee.qdbp.tools.instance.SyncLogCallback
 

E

entries() - 类 中的方法com.gitee.qdbp.tools.utils.Config
返回所有配置项条目
equals(Object, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
相等判断
ExcelBeans - com.gitee.qdbp.tools.excel.json中的类
Bean解析器
ExcelBeans() - 类 的构造器com.gitee.qdbp.tools.excel.json.ExcelBeans
构造函数
ExcelBeans(Map<String, CellRule>) - 类 的构造器com.gitee.qdbp.tools.excel.json.ExcelBeans
构造函数
ExcelBeans(Map<String, CellRule>, Map<String, Object>) - 类 的构造器com.gitee.qdbp.tools.excel.json.ExcelBeans
构造函数
ExcelErrorCode - com.gitee.qdbp.tools.excel中的枚举
文件类结果返回码枚举类
ExcelHelper - com.gitee.qdbp.tools.excel.utils中的类
Excel处理类
ExcelHelper() - 类 的构造器com.gitee.qdbp.tools.excel.utils.ExcelHelper
 
ExcelToJson - com.gitee.qdbp.tools.excel.json中的类
Excel数据转换为JSON格式数据
Excel数据 user.xlsx[MainSheet] id name gender 1 jack male user.xlsx[AddressSheet] id name city details 1 home hefei xxxxx 1 office nanjing yyyyy user.xlsx[ExtraSheet] id intro description 1 jack-intro jack-description ToJsonMetadata = { selfName:users, fileName:user.xlsx, sheetName:MainSheet, idColun:1, headerRows:1 } MergeToJson, 一对多合并, 将子数据以selfWith指定列的字段内容作为字段名合并至主数据, 如下示例的主数据多了home/office两个字段 MergeToJson = { selfWith:2, sheetName:AddressSheet, idField:1, headerRows:1 } users:[ { id:1, name:jack, home:{ city:hefei, details:xxxxx }, office:{ city:nanjing, details:yyyyy } } ] MergeToJson, 一对一合并, 未指定selfWith而是指定了selfName, 则将子数据列表以selfName指定的字段名合并至主数据, 如果子数据有多条后出现的会覆盖前面的, 如下示例的主数据多了address字段, home数据被office覆盖了 MergeToJson = { selfName:address, sheetName:AddressSheet, idField:1, headerRows:1 } users:[ { id:1, name:jack, address:{ name:office, city:nanjing, details:yyyyy } } ] MergeToList, 一对多合并, 将子数据列表以selfName指定的字段名合并至主数据, 如下示例的主数据多了address字段, 内容为子数据列表 MergeToJson = { selfName:address, sheetName:AddressSheet, idField:1, headerRows:1 } users:[ { id:1, name:jack, address:[{ name:home, city:hefei, details:xxxxx }, { name:office, city:nanjing, details:yyyyy }] } ] MergeToField, 一对一合并, 将子数据所有字段合并至主数据, 如下示例的主数据会具有子数据的所有字段 MergeToField = { sheetName:ExtraShee, idField:1, headerRows:1 } users:[ { id:1, name:jack, intro:jack-intro, description:jack-description } ]
ExcelToJson() - 类 的构造器com.gitee.qdbp.tools.excel.json.ExcelToJson
 
ExcelTools - com.gitee.qdbp.tools.excel.utils中的类
Excel工具类
ExcelTools() - 类 的构造器com.gitee.qdbp.tools.excel.utils.ExcelTools
 
ExceptionLogger - com.gitee.qdbp.tools.instance中的类
只记录警告日志的异常处理类
忽略异常, 只记录警告日志, 发生异常后继续处理
ExceptionLogger(boolean) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger
构造函数
ExceptionLogger(boolean, Class<?>) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger
构造函数
ExceptionLogger(boolean, String) - 类 的构造器com.gitee.qdbp.tools.instance.ExceptionLogger
构造函数
ExceptionLogger.CountLogWatcher - com.gitee.qdbp.tools.instance中的类
记录警告日志并统计失败次数的异常处理类
忽略异常, 记录警告日志并统计失败次数, 发生异常后继续处理
execute(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求
execute(String, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求
execute(HttpUrl) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求
execute(HttpUrl, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求
exist(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
exist(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
KEY是否存在
exist(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
KEY是否存在
exist(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
KEY是否存在
exists(Collection<?>, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
列表内容判断
expire(String, Duration) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
expire(String, String, Duration) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
expire(String, String, Long) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
expire(String, Duration) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
设置过期时间
expire(String, String, Duration) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
设置过期时间
expire(String, String, Long) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
export(List<?>, String, OutputStream) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
Excel导出
export(List<?>, InputStream, OutputStream) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
 
export(List<?>, String, OutputStream, ExportCallback) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
 
export(List<?>, InputStream, OutputStream, ExportCallback) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
 
ExportCallback - com.gitee.qdbp.tools.excel中的类
导出回调函数
ExportCallback() - 类 的构造器com.gitee.qdbp.tools.excel.ExportCallback
 
exports(CellInfo) - 接口 中的方法com.gitee.qdbp.tools.excel.rule.CellRule
导出转换
cellInfo.getValue()是来自db的原始值(或上一规则转换后的值)
转换时通过cellInfo.setValue()修改为转换后的值
如需将一个字段拆分为多个字段则返回map, 可通过cellInfo.getCells()获取其他单元格的内容
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.ClearRule
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.DateRule
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.IgnoreIllegalValue
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.MapRule
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.NumberRule
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.RateRule
 
exports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.SplitRule
 
ExpressionTools - com.gitee.qdbp.tools.utils中的类
表达式工具类
ExpressionTools() - 类 的构造器com.gitee.qdbp.tools.utils.ExpressionTools
 

F

fail(Object, String, SyncArgs, Throwable) - 类 中的方法com.gitee.qdbp.tools.instance.SyncLogCallback
 
FailedInfo - com.gitee.qdbp.tools.excel.model中的类
失败信息
FailedInfo() - 类 的构造器com.gitee.qdbp.tools.excel.model.FailedInfo
 
FailedInfo(String, Integer, IResultMessage) - 类 的构造器com.gitee.qdbp.tools.excel.model.FailedInfo
 
FailedInfo(String, Integer, String, Object, IResultMessage) - 类 的构造器com.gitee.qdbp.tools.excel.model.FailedInfo
 
FieldInfo - com.gitee.qdbp.tools.excel.model中的类
字段信息
FieldInfo() - 类 的构造器com.gitee.qdbp.tools.excel.model.FieldInfo
 
FieldInfo(Integer, String, boolean) - 类 的构造器com.gitee.qdbp.tools.excel.model.FieldInfo
 
fill(List<?>, Sheet, XMetadata, SheetFillCallback) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelHelper
 
fillBaseParams(HttpUrl, Map<String, T>) - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
填充基础参数, 如填充配置信息在的公共参数/计算摘要等操作
fillBaseParams(HttpUrl, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
填充基础参数, 如填充配置信息在的公共参数/计算摘要等操作
fillBaseParams(HttpUrl, Map<String, P>) - 接口 中的方法com.gitee.qdbp.tools.http.IHttpHandler
填充基础参数, 如填充配置信息在的公共参数/计算摘要等操作
filter(List<Map<String, Object>>, Map<String, Object>) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
根据查询条件过滤, 分页
list = [ { userId:"10001", nickName:"我是老大", score:150, tags:["T01", "T06", "T08"] } ]
where = { userIdEquals:"10001", nickNameLike:"大", scoreBetween:"100|200", tagsExists:"T06" }
filter(List<Map<String, Object>>, Orderings, Map<String, Object>) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
根据查询条件过滤, 分页
list = [ { userId:"10001", nickName:"我是老大", score:150, tags:["T01", "T06", "T08"] } ]
orderings = new Orderings("score desc, userId asc");
where = { userIdEquals:"10001", nickNameLike:"大", scoreBetween:"100|200", tagsExists:"T06" }
filter(List<Map<String, Object>>, Map<String, Object>, Paging) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
根据查询条件过滤, 分页
list = [ { userId:"10001", nickName:"我是老大", score:150, tags:["T01", "T06", "T08"] } ]
where = { userIdEquals:"10001", nickNameLike:"大", scoreBetween:"100|200", tagsExists:"T06" }
filter(List<Map<String, Object>>, Orderings, Map<String, Object>, Paging) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
根据查询条件过滤, 分页
list = [ { userId:"10001", nickName:"我是老大", score:150, tags:["T01", "T06", "T08"] } ]
orderings = new Orderings("score desc, userId asc");
where = { userIdEquals:"10001", nickNameLike:"大", scoreBetween:"100|200", tagsExists:"T06" }
findAvailableFontName(String[]) - 类 中的静态方法com.gitee.qdbp.tools.chart.UiStyleTools
查找可用的字体名称
findData(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取指定数据
findFieldValue(String, String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取指定数据的指定字段值
findFirstFieldValue(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取第一条数据的指定字段值
findFistData() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取第一条数据
findGroup(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
findLastData() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取最后一条数据
findLastFieldValue(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取最后一条数据的指定字段值
findRowData(List<RowItem>, String) - 类 中的静态方法com.gitee.qdbp.tools.chart.entity.RowItem
 
finish(Workbook, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ExportCallback
收尾处理逻辑
finish(Workbook, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ImportCallback
收尾处理逻辑
form - 类 中的静态变量com.gitee.qdbp.tools.http.HttpTools
 
format(String) - 类 中的静态方法com.gitee.qdbp.tools.specialized.KeywordHandler
 

G

generate(String) - 类 中的静态方法com.gitee.qdbp.tools.specialized.ShortKeyTools
生成短链接
generateQrCode(String, int, OutputStream) - 类 中的静态方法com.gitee.qdbp.tools.files.ImageTools
生成二维码
generateQrCode(String, int, int, OutputStream) - 类 中的静态方法com.gitee.qdbp.tools.files.ImageTools
生成二维码
generates(String) - 类 中的静态方法com.gitee.qdbp.tools.specialized.ShortKeyTools
生成短链接
get(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
get(String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从缓存中取出对象
get(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从缓存中取出对象
get(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从缓存中取出对象
get(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送GET请求
注意, 这里的请求参数和响应报文都没有经过HttpHandler处理!
get(String, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送GET请求
注意, 这里的请求参数和响应报文都没有经过HttpHandler处理!
get(String, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
get(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl.HostUrl
 
get(String) - 类 中的静态方法com.gitee.qdbp.tools.http.HttpUrl.HttpUri
 
getAlias() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取别名
getAllHeaders() - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
获取全部header参数
getAllHeaders() - 接口 中的方法com.gitee.qdbp.tools.http.IHttpHandler
获取全部header参数
getArray(String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取数组类型的配置项值, 以竖杠分隔的字符串拆分为数组
如果值不存在, 将输出警告日志
getArray(String, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取数组类型的配置项值, 以竖杠分隔的字符串拆分为数组
每一个子字符串都已经trim()过了
getBarRowItems() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getBarRowItems() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
getBarTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getBarTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
getBarUnits() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getBarUnits() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
getBean(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getBeanFieldValuesMap(Object, boolean, SerializeConfig) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getBeans(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getBoolean(String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Boolean类型的配置项值
如果值不存在, 将输出警告日志
getBoolean(String, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Boolean类型的配置项值
getBooleanUseDefValue(String, Boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Boolean类型的配置项值
如果配置项值为null则返回默认值
getCells() - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
获取所有单元格信息
getCells() - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
获取所有单元格信息
getCellValue(Cell, FieldInfo) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
读取单元格内容
getCellValue(Cell) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
获取单元格的值
getChartTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getChartTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
getChartTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
getClassInstance(String, Class<T>, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Class类型的配置值并返回实例化对象
getClassInstance(String, Class<T>, Class<S>) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Class类型的配置值并返回实例化对象
如果没有找到配置项, 返回默认类型的实例化对象
getCode() - 枚举 中的方法com.gitee.qdbp.tools.excel.ExcelErrorCode
getCode() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
错误代码
getCode() - 异常错误 中的方法com.gitee.qdbp.tools.http.RemoteServiceException
获取错误返回码
getColumn() - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition.Item
 
getColumn() - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
获取列序号, 从1开始
getColumnLabels() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getColumnLabels() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
getColumnLabels() - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
getColumns() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取列信息
getConditions() - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
getContent() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
获取容器内容
getCopyConcatFields() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段复制合并参数
getData() - 类 中的方法com.gitee.qdbp.tools.chart.entity.RowItem
 
getData(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getDatacenterId() - 类 中的方法com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
getDatas(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getDatas() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取数据列表
getDefaultColor(int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
getDefaultHeitiFontName() - 类 中的静态方法com.gitee.qdbp.tools.chart.UiStyleTools
获取默认黑体字体名称
getExportCallback() - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
 
getFailed() - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
失败列表
getFailedTimes() - 类 中的方法com.gitee.qdbp.tools.instance.ExceptionLogger.CountLogWatcher
获取失败次数
getField() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
字段内容(注意:字段名和字段值都填在field这里, value的值不用于前端显示)
getField() - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
获取字段名
getFieldInfos() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段信息列表
getFieldRows() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段名所在的行
getFileName() - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeMetadata
Excel文件路径
getFileName() - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
Excel文件路径
getFooterRows() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
页脚所在的行号
getHeaderRows() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
表头所在的行号
getHost() - 类 中的方法com.gitee.qdbp.tools.http.HostUrlConfig
主机URL
getIdField() - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeMetadata
ID字段名
getIdField() - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
ID字段名
getIndex() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
获取序号
getInteger(String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Integer类型的配置项值
如果值不存在, 将输出警告日志
getInteger(String, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Integer类型的配置项值
getIntegerUseDefValue(String, Integer) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Integer类型的配置项值
如果配置项值为null则返回默认值
getKey() - 类 中的方法com.gitee.qdbp.tools.http.HostUrlConfig.KeyedHttpUrl
 
getLabel() - 类 中的方法com.gitee.qdbp.tools.chart.entity.RowItem
 
getLineRowItems() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getLineRowItems() - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
getLineTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getLineTitle() - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
getLineUnits() - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
getLineUnits() - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
getLong(String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Long类型的配置项值
如果值不存在, 将输出警告日志
getLong(String, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Long类型的配置项值
getLongUseDefValue(String, Long) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取Long类型的配置项值
如果配置项值为null则返回默认值
getMapItem(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
获取Map缓存对象
getMapString(Map<String, Object>, String) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getMapValue(Map<String, Object>, String, Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getMapValue(Map<String, Object>, String, T, Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getMapValues(Map<String, Object>, String, Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getMapValues(Map<String, Object>, String, boolean, Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
getMax() - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
 
getMergers() - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
合并参数
getMessage() - 枚举 中的方法com.gitee.qdbp.tools.excel.ExcelErrorCode
getMessage() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
错误描述
getMetadata() - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
获取配置元数据
getMetadata() - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
获取配置元数据
getMethod() - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl
获取HTTP请求方法
getMethod() - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl.HttpUri
获取HTTP请求方法
getMin() - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
 
getName() - 类 中的方法com.gitee.qdbp.tools.excel.condition.Required
获取字段名
getName() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
获取容器名称
getName() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取名称
getOrCreateMapItem(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
获取或创建Map缓存对象
getRow() - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
获取行序号, 从1开始
getRow() - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
获取行序号, 从1开始
getRule(String) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
获取指定列的转换规则
getRules() - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
获取转换规则
getRules() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段与转换规则的映射表
getSelfName() - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToJson
自身名称
getSelfName() - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToList
自身名称
getSelfName() - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
自身名称
getSelfWith() - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToJson
自身名称所在的字段名
getSeparator() - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
分隔符
getSheetIndexs() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet序号配置, 默认读取第1个Sheet
getSheetName() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
获取Sheet页签的名称
getSheetName() - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
获取Sheet页签的名称
getSheetNameFillTo() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet名称填充至哪个字段
getSheetNames() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet名称配置, 默认全部匹配
getSimpleItem(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
获取简单缓存对象
getSkipRows() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
跳过几行
getSkipRowWhen() - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
包含指定关键字时跳过此行
getSourceFields() - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
源字段
getString(String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取String类型的配置项值(已经trim过了)
如果值不存在, 将输出警告日志
getString(String, boolean) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取String类型的配置项值(已经trim过了)
getStringUseDefKeys(String, String...) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取String类型的配置项值, 如果配置项值为null则继续取备用KEY的值
getStringUseDefValue(String, String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
获取String类型的配置项值, 如果配置项值为null则返回默认值
getStringUseSuffix(String, String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
以key.suffix1.suffix2的方式逐级取值
如key = a.b.c, suffixes=x.y.z
取值顺序为: a.b.c.x.y.z - a.b.c.x.y - a.b.c.x - a.b.c
getTargetField() - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
目标字段
getText() - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition.Item
 
getTimestamp() - 类 中的方法com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
getTitle() - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
获取标题文本
getTotal() - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
获取记录总数
getTotalColumnsOfRow(Row) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
获取Row的总列数
getTotalRowsOfSheet(Sheet) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
获取Sheet的总行数
getUrl(String) - 类 中的方法com.gitee.qdbp.tools.http.HostUrlConfig
获取配置的URL
getUrl() - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl
获取远程请求URL
getUrl(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl.HttpUri
获取远程请求URL
getValue() - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
获取内容
getValue() - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
获取字段值
getValues(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getValues(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
 
getValues() - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
获取值列表
getWorkerId() - 类 中的方法com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
global - 类 中的静态变量com.gitee.qdbp.tools.excel.rule.RuleFactory
 
greaterEqualThen(Number, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于等于判断
greaterEqualThen(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于等于判断
greaterEqualThenWithDay(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于等于判断, 期望值的时间部分会设置为00:00:00
greaterThen(Number, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于判断
greaterThen(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于判断
greaterThenWithDay(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
大于判断, 期望值的时间部分会设置为00:00:00

H

haget(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
haget(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
haget(String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
整个哈希表的value类型相同, 一次性全部取出来
haget(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
整个哈希表的value类型相同, 一次性全部取出来
haget(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
整个哈希表的value类型相同, 一次性全部取出来
haget(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
整个哈希表的value类型相同, 一次性全部取出来
haget(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
整个哈希表的value类型相同, 一次性全部取出来
haget(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
整个哈希表的value类型相同, 一次性全部取出来
hdel(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hdel(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除哈希表指定字段
hdel(String, String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除哈希表指定字段
hdel(String, String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
删除哈希表指定字段
headerIterator() - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
遍历header参数
HeitiFont - com.gitee.qdbp.tools.chart中的类
黑体字体, 从系统安装的字体中选择可用的字体
new PlainHeiti(14);
new BoldHeiti(14);
new ItalicHeiti(14);
HeitiFont(int, int) - 类 的构造器com.gitee.qdbp.tools.chart.HeitiFont
 
HeitiFont.BoldHeiti - com.gitee.qdbp.tools.chart中的类
 
HeitiFont.ItalicHeiti - com.gitee.qdbp.tools.chart中的类
 
HeitiFont.PlainHeiti - com.gitee.qdbp.tools.chart中的类
 
hexist(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hexist(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
判断哈希表是否存在field
hexist(String, String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
判断哈希表是否存在field
hexist(String, String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
判断哈希表是否存在field
hget(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hget(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hget(String, String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hget(String, String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从哈希表取出指定字段值
hkeys(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hkeys(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
获取所有的KEY
hkeys(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
获取所有的KEY
hkeys(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
获取所有的KEY
hlen(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hlen(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
获取哈希表的field数量
hlen(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
获取哈希表的field数量
hlen(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
获取哈希表的field数量
hlist(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hlist(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hlist(String, String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hlist(String, String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从哈希表取出指定字段值
hmdel(String, List<String>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hmdel(String, List<String>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除哈希表指定字段值
hmdel(String, String, List<String>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
删除哈希表指定字段值
hmdel(String, String, List<String>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
删除哈希表指定字段值
hmget(String, List<String>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hmget(String, List<String>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hmget(String, List<String>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hmget(String, String, List<String>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hmget(String, List<String>, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hmget(String, String, List<String>, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从哈希表取出指定字段值
hmget(String, String, List<String>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从哈希表取出指定字段值
hmget(String, String, List<String>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从哈希表取出指定字段值
hmset(String, Map<String, T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hmset(String, Map<String, T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表指定字段值
hmset(String, String, Map<String, T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表指定字段值
hmset(String, String, Map<String, T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
保存哈希表指定字段值
hoget(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hoget(String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
将整个哈希表还原为对象
hoget(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
将整个哈希表还原为对象
hoget(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
将整个哈希表还原为对象
hoset(String, T) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hoset(String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表对象(将整个对象按字段分别存储到缓存中, 之后以hget/hset/hdel的方式分别对字段操作)
hoset(String, String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表对象(将整个对象按字段分别存储到缓存中, 之后以hget/hset/hdel的方式分别对字段操作)
hoset(String, String, T) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
保存哈希表对象(将整个对象按字段分别存储到缓存中, 之后以hget/hset/hdel的方式分别对字段操作)
host - 类 中的变量com.gitee.qdbp.tools.http.HostUrlConfig
主机URL
HostUrl(String) - 类 的构造器com.gitee.qdbp.tools.http.HttpUrl.HostUrl
 
HostUrlConfig - com.gitee.qdbp.tools.http中的类
URL配置项工具类
HostUrlConfig() - 类 的构造器com.gitee.qdbp.tools.http.HostUrlConfig
 
HostUrlConfig(Properties, String) - 类 的构造器com.gitee.qdbp.tools.http.HostUrlConfig
构造函数
HostUrlConfig(URL, String) - 类 的构造器com.gitee.qdbp.tools.http.HostUrlConfig
构造函数
HostUrlConfig.KeyedHttpUrl - com.gitee.qdbp.tools.http中的类
 
hset(String, String, T) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
hset(String, String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表指定字段值
hset(String, String, String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存哈希表指定字段值
hset(String, String, String, T) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
保存哈希表指定字段值
HttpException - com.gitee.qdbp.tools.http中的异常错误
HTTP请求执行失败
HttpException() - 异常错误 的构造器com.gitee.qdbp.tools.http.HttpException
 
HttpException(String) - 异常错误 的构造器com.gitee.qdbp.tools.http.HttpException
 
HttpException(String, Throwable) - 异常错误 的构造器com.gitee.qdbp.tools.http.HttpException
 
HttpExecutor - com.gitee.qdbp.tools.http中的类
接口请求工具类
一般情况下, 基础参数/加解密逻辑/解析响应报文, 对于同一个第三方平台来说是相同的
这是HttpExecutor的基础条件, 如果不满足, 你还是不要用这个工具了, 自己用HttpTools自己实现吧
HttpExecutor由三部分组成, HostUrlConfig, HttpTools, IHttpHandler
HostUrlConfig负责配置项的读取和缓存
HttpTools负责调用apache的HttpClient发送请求, 和调用IHttpHandler完成发送前的参数封装/接收后的报文解析
IHttpHandler实现对于每个第三方平台独有业务逻辑的封装, 有fillBaseParams和parseResult两个访求:
-- fillBaseParams负责组装一些平台级的基础参数, 或是计算摘要/加密等
-- parseResult则负责对收到的报文进行解析, 将第三方平台的数据结构组装成本平台的数据结构

详见DEMO, XxxAuthHttpExecutor
HttpExecutor(HostUrlConfig, HttpTools) - 类 的构造器com.gitee.qdbp.tools.http.HttpExecutor
 
HttpExecutor(HostUrlConfig, HttpTools, IHttpHandler) - 类 的构造器com.gitee.qdbp.tools.http.HttpExecutor
 
HttpFormImpl() - 类 的构造器com.gitee.qdbp.tools.http.HttpTools.HttpFormImpl
 
HttpFormImpl(IHttpHandler) - 类 的构造器com.gitee.qdbp.tools.http.HttpTools.HttpFormImpl
 
httpHandler - 类 中的变量com.gitee.qdbp.tools.http.HttpTools
 
HttpJsonImpl() - 类 的构造器com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
HttpJsonImpl(IHttpHandler) - 类 的构造器com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
HttpMethod - com.gitee.qdbp.tools.http中的枚举
HTTP请求方式, GET or POST
HttpTools - com.gitee.qdbp.tools.http中的类
HTTP请求工具类
HttpTools() - 类 的构造器com.gitee.qdbp.tools.http.HttpTools
 
HttpTools(IHttpHandler) - 类 的构造器com.gitee.qdbp.tools.http.HttpTools
 
HttpTools.HttpFormImpl - com.gitee.qdbp.tools.http中的类
以application/x-www-form-urlencoded的方式提交请求参数
HttpTools.HttpJsonImpl - com.gitee.qdbp.tools.http中的类
以application/json的方式提交请求参数
HttpUri(HttpMethod, String) - 类 的构造器com.gitee.qdbp.tools.http.HttpUrl.HttpUri
 
HttpUrl - com.gitee.qdbp.tools.http中的类
远程请求的URL和HTTP请求方法
HttpUrl hurl = new HostUrl(host).post(uri); // 用于单一主机
HttpUri huri = HttpUri.post(uri); HttpUrl hurl = huri.to(host); // 用于多主机
HttpUrl(HttpMethod, String) - 类 的构造器com.gitee.qdbp.tools.http.HttpUrl
构造函数
HttpUrl.HostUrl - com.gitee.qdbp.tools.http中的类
 
HttpUrl.HttpUri - com.gitee.qdbp.tools.http中的类
 

I

ICacheService - com.gitee.qdbp.tools.cache中的接口
缓存服务接口
ICacheService.Aware - com.gitee.qdbp.tools.cache中的接口
缓存服务设置接口
IgnoreIllegalValue - com.gitee.qdbp.tools.excel.rule中的类
忽略格式错误的内容, 如果不加这个规则, 解析失败将抛出异常
这个规则只是标记一下, 由SheetParseCallback.convert()和SheetFillCallback.convert()作特殊判断
IgnoreIllegalValue() - 类 的构造器com.gitee.qdbp.tools.excel.rule.IgnoreIllegalValue
 
IHttpHandler - com.gitee.qdbp.tools.http中的接口
参数处理和结果解析
ImageTools - com.gitee.qdbp.tools.files中的类
图片工具
ImageTools() - 类 的构造器com.gitee.qdbp.tools.files.ImageTools
 
ImportCallback - com.gitee.qdbp.tools.excel中的类
导入回调函数
ImportCallback() - 类 的构造器com.gitee.qdbp.tools.excel.ImportCallback
 
imports(CellInfo) - 接口 中的方法com.gitee.qdbp.tools.excel.rule.CellRule
导入转换
cellInfo.getValue()是来自excel的原始值(或上一规则转换后的值)
转换时通过cellInfo.setValue()修改为转换后的值
如需将一个字段拆分为多个字段则返回map, 可通过cellInfo.getCells()获取其他单元格的内容
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.ClearRule
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.DateRule
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.IgnoreIllegalValue
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.MapRule
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.NumberRule
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.RateRule
 
imports(CellInfo) - 类 中的方法com.gitee.qdbp.tools.excel.rule.SplitRule
 
IndexListCondition - com.gitee.qdbp.tools.excel.condition中的类
序号列表配置类
配置规则: * 表示全部
配置规则: 1|2|5-8|12
配置规则: !
IndexListCondition() - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexListCondition
默认全部允许
IndexListCondition(boolean, int...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexListCondition
 
IndexListCondition(int...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexListCondition
 
IndexListCondition(String) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexListCondition
解析文本规则
IndexListCondition(String, int) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexListCondition
解析文本规则
IndexRangeCondition - com.gitee.qdbp.tools.excel.condition中的类
序号范围配置类
配置规则: 1|2|5-8|12
IndexRangeCondition(int...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
 
IndexRangeCondition(String) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
解析文本规则
IndexRangeCondition(String, int) - 类 的构造器com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
解析文本规则
init(Workbook, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ExportCallback
初始化处理逻辑
init(Workbook, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ImportCallback
初始化处理逻辑
InMemoryCache - com.gitee.qdbp.tools.cache中的类
内存中的缓存
InMemoryCache() - 类 的构造器com.gitee.qdbp.tools.cache.InMemoryCache
 
InMemoryCache.MapItem - com.gitee.qdbp.tools.cache中的类
Map缓存类
InMemoryCache.SimpleItem - com.gitee.qdbp.tools.cache中的类
简单缓存类
isEmpty() - 类 中的方法com.gitee.qdbp.tools.utils.Config
是否为空
isEnable(int) - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexListCondition
 
isEnable(int) - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
 
isEnable(String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.NameListCondition
 
isEnableSheet(int, String) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
判断指定页签是否有效
isFieldRow(int) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
判断指定行是否为字段行
isFooterRow(int) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
判断指定行是否为页脚
isHeaderRow(int) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
判断指定行是否为页头
isMatches(Row) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
isMatches(Object, String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
isMatches(Object, String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueContainsTextCondition
 
isMatches(Object, String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueEqualsTextCondition
 
isMatches(Row) - 接口 中的方法com.gitee.qdbp.tools.excel.condition.MatchesRowCondition
 
isRequired() - 类 中的方法com.gitee.qdbp.tools.excel.condition.Required
是不是必填字段
isRequired() - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
是不是必填字段
isSkipRow(Row) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
判断指定行是否跳过
ItalicHeiti(int) - 类 的构造器com.gitee.qdbp.tools.chart.HeitiFont.ItalicHeiti
 
Item(int, String) - 类 的构造器com.gitee.qdbp.tools.excel.condition.CellValueCondition.Item
 

J

json - 类 中的静态变量com.gitee.qdbp.tools.http.HttpTools
 
JsonTools - com.gitee.qdbp.tools.utils中的类
Json工具类
JsonTools() - 类 的构造器com.gitee.qdbp.tools.utils.JsonTools
 

K

KeyedHttpUrl(String, HttpMethod, String) - 类 的构造器com.gitee.qdbp.tools.http.HostUrlConfig.KeyedHttpUrl
 
KeywordHandler - com.gitee.qdbp.tools.specialized中的类
关键字收集
KeywordHandler() - 类 的构造器com.gitee.qdbp.tools.specialized.KeywordHandler
 

L

lessEqualThen(Number, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于等于判断
lessEqualThen(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于等于判断
lessEqualThenWithDay(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于等于判断, 期望值的时间部分会设置为23:59:59
lessThen(Number, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于判断
lessThen(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于判断
lessThenWithDay(Date, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
小于判断, 期望值的时间部分会设置为23:59:59
like(Object, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
包含判断
LineDataset - com.gitee.qdbp.tools.chart.entity中的类
水果销售情况(万元) 品种一季度二季度三季度四季度 苹果586000478000524000628000 柚子502000423000480000540000 香蕉475000412000382000468000 BarAndLineDataset dataset = new BarAndLineDataset(); dataset.setChartTitle("水果销售情况"); dataset.setLineTitle("销售量"); dataset.setLineTitle("元,万元,亿元"); // 自动根据数据选择单位 dataset.setColumnLabels("一季度", "二季度", "三季度", "四季度"); dataset.addLineData("苹果", 586000, 478000, 524000, 628000); dataset.addLineData("柚子", 502000, 423000, 480000, 540000); dataset.addLineData("香蕉", 475000, 412000, 382000, 468000); ChartBusinessTools.createLineChart1(dataset, response.getOutputStream(), 600, 400);
LineDataset() - 类 的构造器com.gitee.qdbp.tools.chart.entity.LineDataset
 
list(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
list(String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从缓存中取出对象
list(String, String, Class<T>) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
从缓存中取出对象
list(String, String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
从缓存中取出对象
list(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求并返回对象列表
list(String, Map<String, Object>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求并返回对象列表
list(HttpUrl, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求并返回对象列表
list(HttpUrl, Map<String, Object>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求并返回对象列表

M

mapFillToBean(Map<String, ?>, Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将Map内容设置到Java对象中
copy from JavaBeanDeserializer.createInstance(Map, ParserConfig);
MapItem(Map<String, String>) - 类 的构造器com.gitee.qdbp.tools.cache.InMemoryCache.MapItem
 
MapRule - com.gitee.qdbp.tools.excel.rule中的类
映射规则
MapRule(String) - 类 的构造器com.gitee.qdbp.tools.excel.rule.MapRule
构造函数
MapRule(Map<String, Object>) - 类 的构造器com.gitee.qdbp.tools.excel.rule.MapRule
构造函数
mapToBean(Map<String, ?>, Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将Map转换为Java对象
matches(Map<String, Object>, Map<String, Object>) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
判断数据是否匹配条件
MatchesRowCondition - com.gitee.qdbp.tools.excel.condition中的接口
行匹配的判断条件
me - 类 中的静态变量com.gitee.qdbp.tools.cache.InMemoryCache
静态实例
MergeMetadata - com.gitee.qdbp.tools.excel.json中的类
基础合并参数
MergeMetadata() - 类 的构造器com.gitee.qdbp.tools.excel.json.MergeMetadata
 
MergeToField - com.gitee.qdbp.tools.excel.json中的类
一对一合并, 将子数据所有字段合并至主数据, 如下示例的主数据会具有子数据的所有字段
MergeToField() - 类 的构造器com.gitee.qdbp.tools.excel.json.MergeToField
 
MergeToJson - com.gitee.qdbp.tools.excel.json中的类
如果指定了selfWith, 一对多合并, 将子数据以selfWith指定列的字段内容作为字段名合并至主数据
如果未指定selfWith而是指定了selfName, 一对一合并, 则将子数据列表以selfName指定的字段名合并至主数据
MergeToJson() - 类 的构造器com.gitee.qdbp.tools.excel.json.MergeToJson
 
MergeToList - com.gitee.qdbp.tools.excel.json中的类
一对多合并, 将子数据列表以fieldName指定的字段名合并至主数据
MergeToList() - 类 的构造器com.gitee.qdbp.tools.excel.json.MergeToList
 
MergeType - com.gitee.qdbp.tools.excel.json中的枚举
合并类型枚举
MetadataTools - com.gitee.qdbp.tools.excel.utils中的类
元数据解析工具类
MetadataTools() - 类 的构造器com.gitee.qdbp.tools.excel.utils.MetadataTools
 

N

NameListCondition - com.gitee.qdbp.tools.excel.condition中的类
名称列表配置类
配置规则: * 表示全部
配置规则: 开发|测试
配置规则: !
NameListCondition() - 类 的构造器com.gitee.qdbp.tools.excel.condition.NameListCondition
默认全部允许
NameListCondition(boolean, String...) - 类 的构造器com.gitee.qdbp.tools.excel.condition.NameListCondition
 
NameListCondition(String) - 类 的构造器com.gitee.qdbp.tools.excel.condition.NameListCondition
解析文本规则
newConvertErrorMessage(CellInfo, CellRule) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
 
newCountWatcher(boolean) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个记录警告日志并统计失败次数的实例
newCountWatcher(boolean, Class<?>) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个记录警告日志并统计失败次数的实例
newCountWatcher(boolean, String) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个记录警告日志并统计失败次数的实例
newDefaultBarRenderer(boolean, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultCategoryAxis() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultCategoryAxis(String) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultCategoryAxis(String, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultCategoryPlot() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultChart(CategoryPlot) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultChart(CategoryPlot, String) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultDateAxis() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultDateAxis(String) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultDateAxis(String, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultLineRenderer(boolean, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultNumberAxis() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultNumberAxis(String) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultPiePlot() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
饼状图
newDefaultShapeRenderer(boolean, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultTimeSeriesBarRender(boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
时间轴
newDefaultTimeSeriesRender(boolean, boolean) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultValueAxis(Class<T>) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newDefaultValueAxis(Class<T>, String) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
newInstance() - 类 中的静态方法com.gitee.qdbp.tools.specialized.KeywordHandler
 
newlineLogs(Object...) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将对象转换为以换行符分隔的日志文本
如 newlineLogs(params, operator) 返回 \n\t{paramsJson}\n\t{operatorJson}
newLogWatcher(boolean) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个只记录警告日志的实例
newLogWatcher(boolean, Class<?>) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个只记录警告日志的实例
newLogWatcher(boolean, String) - 类 中的静态方法com.gitee.qdbp.tools.instance.ExceptionLogger
生成一个只记录警告日志的实例
nextId() - 类 中的方法com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
NumberRule - com.gitee.qdbp.tools.excel.rule中的类
数字规则
NumberRule() - 类 的构造器com.gitee.qdbp.tools.excel.rule.NumberRule
 
NumberRule(String) - 类 的构造器com.gitee.qdbp.tools.excel.rule.NumberRule
 

O

of(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.condition.Required
 
onAfterExecute(HttpMessage, HttpResponse) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送请求后的操作
onBeforeExecute(HttpMessage) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送请求前设置header参数等操作
onCaughtException(String, Throwable) - 类 中的方法com.gitee.qdbp.tools.instance.ExceptionLogger.CountLogWatcher
 
onCaughtException(String, Throwable) - 类 中的方法com.gitee.qdbp.tools.instance.ExceptionLogger
 
onRowFinished(Row, RowInfo, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
填充Row完成之后的处理逻辑, 返回false跳过后面的所有Row
onRowStart(Row, RowInfo, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
开始填充Row之前的处理逻辑, 返回false跳过该Row
onSheetFinished(Sheet, XMetadata, List<?>) - 类 中的方法com.gitee.qdbp.tools.excel.ExportCallback
导出Sheet完成之后的处理逻辑, 返回false跳过后面的所有Sheet
onSheetFinished(Sheet, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ImportCallback
解析Sheet完成之后的处理逻辑, 返回false跳过后面的所有Sheet
onSheetStart(Sheet, XMetadata, List<?>) - 类 中的方法com.gitee.qdbp.tools.excel.ExportCallback
开始导出Sheet之前的处理逻辑, 返回false跳过该Sheet
onSheetStart(Sheet, XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.ImportCallback
开始解析Sheet之前的处理逻辑, 返回false跳过该Sheet

P

paginate(List<T>, Paging) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
分页
parse(InputStream, String) - 类 中的方法com.gitee.qdbp.tools.excel.json.ExcelBeans
解析excel, 获取bean对象
parse(Workbook, String) - 类 中的方法com.gitee.qdbp.tools.excel.json.ExcelBeans
解析excel, 获取bean对象
parse(Sheet) - 类 中的方法com.gitee.qdbp.tools.excel.json.ExcelBeans
解析excel, 获取bean对象
parse(Sheet, XMetadata, SheetParseCallback) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelHelper
 
parse(InputStream, ImportCallback) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelParser
 
parse(Workbook, ImportCallback) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelParser
 
parseBooleanExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析Boolean表达式
parseBooleanExpression(String, Boolean) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析Boolean表达式
parseCellRules(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析单元格规则
parseCellValueCondition(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析单元格值的判断条件
parseCopyConcatFields(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
 
parseDoubleExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseDoubleExpression(String, Double) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析表达式
parseFieldInfoByRows(Sheet, IndexRangeCondition) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析字段列表配置
星号开头或(*)结尾的字段为必填字段: [*name] or [name(*)]
parseFieldInfoByText(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析字段列表配置
星号开头或(*)结尾的字段为必填字段: [*name] or [name(*)]
parseFloatExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseFloatExpression(String, Float) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseHeaders(Sheet, IndexRangeCondition, List<FieldInfo>) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析表头数据
星号开头或(*)结尾的字段为必填字段: [* 姓名] or [姓名 (*)]
parseHexColors(String...) - 类 中的静态方法com.gitee.qdbp.tools.chart.UiStyleTools
解析16进制表示的颜色列表
parseIntegerExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseIntegerExpression(String, Integer) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseLongExpression(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseLongExpression(String, Long) - 类 中的静态方法com.gitee.qdbp.tools.utils.ExpressionTools
解析数字表达式
parseMetadata(String) - 类 中的静态方法com.gitee.qdbp.tools.excel.json.ToJsonProperties
 
parseMetadata(Properties) - 类 中的静态方法com.gitee.qdbp.tools.excel.json.ToJsonProperties
 
parseProperties(Properties) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
解析XMetadata
MetadataTools.parseProperties(PropertyTools.load(filePath)); ## SheetIndex从1开始, 行号从1开始, 列号从A开始 ## 字段对应关系, field.names/field.rows必填其一 ## 字段列表 # field.names = *id|*name|positive|height||birthday|gender|subsidy ## 字段行 field.rows = 5 ## 跳过的行数(不配置时默认取字段行或标题行的下一行) # skip.rows = 2 ## 标题行号,从1开始 header.rows = 2-4 ## 页脚行号,从1开始,只对导出生效 ## 导入时每个excel的页脚位置有可能不一样, 所以导入不能指定页脚行, 只能在导入之前把页脚删掉 ## 如果页脚有公式, 那么数据行必须至少2行, 公式的范围必须包含这两行数据, 如SUM($E$5:E6), 而不能是SUM($E$5:E5), 否则公式不会计算 footer.rows = 7-9 ## 包含指定关键字时跳过此行 ## A列为空, 或B列包含小计且H列包含元, 或B列包含总计且H列包含元 # skip.row.when.contains = { A:"NULL" }, { B:"小计", H:"元" }, { B:"总计", H:"元" } ## 加载哪些Sheet, sheet.index/sheet.name必填其一 ## 配置规则: * 表示全部 ## 配置规则: 1|2|5-8|12 ## 配置规则: !
parseResult(HttpUrl, String) - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
解析结果
parseResult(HttpUrl, String) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
 
parseResult(HttpUrl, String) - 接口 中的方法com.gitee.qdbp.tools.http.IHttpHandler
解析结果
parseRules(Workbook, String) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
从excel中读取转换规则
4列, 顺序为: 名称|KEY|类型|规则, 例如:
名称 KEY 类型 规则 整数 int number int 长整数 long number long 浮点数 double number double 布尔值 boolean map true:是|Y|1, false:否|N|0 日期 date date yyyy-MM-dd 时间 time date HH:mm:ss 时分 hhmm date HH:mm 性别 gender map 0:未知, 1:男, 2:女
parseRules(Workbook, String, String, int) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.MetadataTools
从excel中读取转换规则
PasswordHash - com.gitee.qdbp.tools.specialized中的类
密码盐渍算法工具类,生成70个字符的密码hash,可以调整SALT_BYTE_SIZE,HASH_BYTE_SIZE来改变

how to use: String password = "123456"; String ciphertext = PasswordHash.DEFAULT.createHash(password); boolean success = PasswordHash.DEFAULT.validatePassword(password, ciphertext);
PasswordHash(int, int) - 类 的构造器com.gitee.qdbp.tools.specialized.PasswordHash
构造函数
PasswordHash(int, int, int) - 类 的构造器com.gitee.qdbp.tools.specialized.PasswordHash
构造函数
persist(String) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
persist(String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
移除过期时间
persist(String, String) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
移除过期时间
persist(String, String) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
移除过期时间
PlainHeiti(int) - 类 的构造器com.gitee.qdbp.tools.chart.HeitiFont.PlainHeiti
 
post(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送POST请求
注意, 这里的请求参数和响应报文都没有经过HttpHandler处理!
post(String, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
发送POST请求
注意, 这里的请求参数和响应报文都没有经过HttpHandler处理!
post(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl.HostUrl
 
post(String) - 类 中的静态方法com.gitee.qdbp.tools.http.HttpUrl.HttpUri
 
properties() - 类 中的方法com.gitee.qdbp.tools.utils.Config
返回Properties
put(String, String) - 类 中的方法com.gitee.qdbp.tools.utils.Config
 
put(KeyString...) - 类 中的方法com.gitee.qdbp.tools.utils.Config
 

Q

query(String, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求并返回指定对象
query(String, Map<String, Object>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpExecutor
执行远程请求并返回指定对象
query(HttpUrl, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求并返回指定对象
query(HttpUrl, Map<String, P>, Class<T>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
执行远程请求并返回指定对象
QueryTools - com.gitee.qdbp.tools.utils中的类
查询工具, 根据查询条件过滤, 分页
QueryTools() - 类 的构造器com.gitee.qdbp.tools.utils.QueryTools
 

R

RateRule - com.gitee.qdbp.tools.excel.rule中的类
 
RateRule() - 类 的构造器com.gitee.qdbp.tools.excel.rule.RateRule
 
RateRule(double) - 类 的构造器com.gitee.qdbp.tools.excel.rule.RateRule
 
register(String, RuleFactory.RuleBuilder) - 类 中的方法com.gitee.qdbp.tools.excel.rule.RuleFactory
 
RemoteExecuteException - com.gitee.qdbp.tools.http中的异常错误
远程调用失败
RemoteExecuteException() - 异常错误 的构造器com.gitee.qdbp.tools.http.RemoteExecuteException
 
RemoteExecuteException(String) - 异常错误 的构造器com.gitee.qdbp.tools.http.RemoteExecuteException
 
RemoteExecuteException(String, Throwable) - 异常错误 的构造器com.gitee.qdbp.tools.http.RemoteExecuteException
 
RemoteServiceException - com.gitee.qdbp.tools.http中的异常错误
远程业务异常类
RemoteServiceException(String, String) - 异常错误 的构造器com.gitee.qdbp.tools.http.RemoteServiceException
构造函数
RemoteServiceException(String, String, Throwable) - 异常错误 的构造器com.gitee.qdbp.tools.http.RemoteServiceException
构造函数
removeHeader(String) - 类 中的方法com.gitee.qdbp.tools.http.BaseHttpHandler
删除header参数
Required - com.gitee.qdbp.tools.excel.condition中的类
必填字段配置解析
Required(String, boolean) - 类 的构造器com.gitee.qdbp.tools.excel.condition.Required
 
responseToString(HttpResponse) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
获取响应文本
ResultParseException - com.gitee.qdbp.tools.http中的异常错误
结果解析失败
ResultParseException() - 异常错误 的构造器com.gitee.qdbp.tools.http.ResultParseException
 
ResultParseException(String) - 异常错误 的构造器com.gitee.qdbp.tools.http.ResultParseException
 
ResultParseException(String, Throwable) - 异常错误 的构造器com.gitee.qdbp.tools.http.ResultParseException
 
ResultSetMismatchException - com.gitee.qdbp.tools.excel.exception中的异常错误
结果集不匹配
ResultSetMismatchException(String) - 异常错误 的构造器com.gitee.qdbp.tools.excel.exception.ResultSetMismatchException
构造函数
ResultSetMismatchException(String, Throwable) - 异常错误 的构造器com.gitee.qdbp.tools.excel.exception.ResultSetMismatchException
构造函数
RowInfo - com.gitee.qdbp.tools.excel.model中的类
行信息
RowInfo(String, Integer) - 类 的构造器com.gitee.qdbp.tools.excel.model.RowInfo
 
RowItem - com.gitee.qdbp.tools.chart.entity中的类
行数据
RowItem() - 类 的构造器com.gitee.qdbp.tools.chart.entity.RowItem
 
RowItem(String, List<Double>) - 类 的构造器com.gitee.qdbp.tools.chart.entity.RowItem
 
RowItem(String, double...) - 类 的构造器com.gitee.qdbp.tools.chart.entity.RowItem
 
RuleFactory - com.gitee.qdbp.tools.excel.rule中的类
规则注册工厂
RuleFactory() - 类 的构造器com.gitee.qdbp.tools.excel.rule.RuleFactory
 
RuleFactory.RuleBuilder - com.gitee.qdbp.tools.excel.rule中的接口
 

S

segmentate(String) - 类 中的静态方法com.gitee.qdbp.tools.specialized.KeywordHandler
 
serializeFields(T) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
serializeValue(T) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
set(String, T) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
set(String, T, Duration) - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
set(String, String, T, Duration) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
set(String, String, T, Long) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
set(String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存对象
set(String, String, T) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存对象
set(String, T, Duration) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存对象
set(String, String, T, Duration) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
保存对象
set(String, String, T) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
 
set(String, String, T, Long) - 类 中的方法com.gitee.qdbp.tools.cache.InMemoryCache
setAlias(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
设置别名
setBarRowItems(List<RowItem>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setBarRowItems(List<RowItem>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setBarTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setBarTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setBarUnits(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setBarUnits(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setCacheService(AbstractCacheService) - 接口 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService.Aware
 
setCacheService(ICacheService) - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService.Aware
 
setCells(List<CellInfo>) - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
设置所有单元格信息
setCells(List<CellInfo>) - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
设置所有单元格信息
setCellValue(Cell, Object, Map<String, Object>) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
写入单元格内容
setCellValue(Cell, Object) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
设置单元格的值, 如果格式转换失败将不会设置单元格
setCellValue(Cell, Object, boolean) - 类 中的静态方法com.gitee.qdbp.tools.excel.utils.ExcelTools
设置单元格的值
setChartTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setChartTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setChartTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setCode(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
错误代码
setColumn(int) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition.Item
 
setColumn(Integer) - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
设置列序号, 从1开始
setColumnLabels(String...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setColumnLabels(List<String>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setColumnLabels(String...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setColumnLabels(List<String>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarDataset
 
setColumnLabels(String...) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setColumnLabels(List<String>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setColumns(List<ColumnInfo>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
设置列信息
setConditions(List<CellValueCondition.Item>) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
setCopyConcatFields(List<CopyConcat>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段复制合并参数
setData(List<Double>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.RowItem
 
setDatas(List<Map<String, Object>>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
设置数据列表
setDefaultChartTheme() - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
中文主题样式 解决乱码
setExportCallback(ExportCallback) - 类 中的方法com.gitee.qdbp.tools.excel.XExcelExporter
 
setField(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
字段内容(注意:字段名和字段值都填在field这里, value的值不用于前端显示)
setField(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
设置字段名
setFieldInfos(List<FieldInfo>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段信息列表
setFieldRows(IndexRangeCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段名所在的行
setFileName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeMetadata
Excel文件路径
setFileName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
Excel文件路径
setFooterRows(IndexRangeCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
页脚所在的行号
setGetParams(URIBuilder, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpFormImpl
设置GET参数
setGetParams(URIBuilder, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
setGetParams(URIBuilder, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
设置GET参数
setHeaderRows(IndexRangeCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
表头所在的行号
setHost(String) - 类 中的方法com.gitee.qdbp.tools.http.HostUrlConfig
主机URL
setHttpHandler(IHttpHandler) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
 
setIdField(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeMetadata
ID字段名
setIdField(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
ID字段名
setIndex(Integer) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
获取序号
setKey(String) - 类 中的方法com.gitee.qdbp.tools.http.HostUrlConfig.KeyedHttpUrl
 
setLabel(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.RowItem
 
setLineRowItems(List<RowItem>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setLineRowItems(List<RowItem>) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setLineTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setLineTitle(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setLineUnits(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.BarAndLineDataset
 
setLineUnits(String) - 类 中的方法com.gitee.qdbp.tools.chart.entity.LineDataset
 
setMergers(List<MergeMetadata>) - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
合并参数
setMessage(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
错误描述
setMetadata(XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
设置配置元数据
setMetadata(XMetadata) - 类 中的方法com.gitee.qdbp.tools.excel.model.RowInfo
设置配置元数据
setName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanContainer
设置容器名称
setName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
设置名称
setPostParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpFormImpl
设置POST参数
setPostParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
setPostParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
设置POST参数
setPropertyContainer(PropertyContainer) - 类 中的方法com.gitee.qdbp.tools.http.ConfigHttpHandler
 
setRendererSeriesColors(AbstractRenderer, int, int) - 类 中的静态方法com.gitee.qdbp.tools.chart.ChartThemeTools
 
setRequired(boolean) - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
设置是不是必填字段
setRow(Integer) - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
设置行序号, 从1开始
setRules(List<CellRule>) - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
设置转换规则
setRules(Map<String, List<CellRule>>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
字段与转换规则的映射表
setSelfName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToJson
自身名称
setSelfName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToList
自身名称
setSelfName(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.ToJsonMetadata
自身名称
setSelfWith(String) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToJson
自身名称所在的字段名
setSeparator(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
分隔符
setSheetIndexs(IndexListCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet序号配置, 默认读取第1个Sheet
setSheetName(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
设置Sheet页签的名称
setSheetNameFillTo(String) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet名称填充至哪个字段
setSheetNames(NameListCondition) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
Sheet名称配置, 默认全部匹配
setSkipRows(Integer) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
跳过几行
setSkipRowWhen(List<MatchesRowCondition>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
包含指定关键字时跳过此行
setSourceFields(List<String>) - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
源字段
setTargetField(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
目标字段
setText(String) - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition.Item
 
setTitle(String) - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
设置标题文本
setTotal(int) - 类 中的方法com.gitee.qdbp.tools.excel.SheetParseCallback
设置记录总数
setUploadParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpFormImpl
设置文件上传参数
这种方式提交的参数, Filter无法获取到, 只有通过Controller才能获取到, 因为是以二进制流的方式提交的
setUploadParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
setUploadParams(HttpPost, Map<String, P>, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
设置文件上传参数
这种方式提交的参数, Filter无法获取到, 只有通过Controller才能获取到, 因为是以二进制流的方式提交的
setValue(Object) - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
设置内容
setValue(Object) - 类 中的方法com.gitee.qdbp.tools.excel.model.FailedInfo
设置字段值
setValues(List<Object>) - 类 中的方法com.gitee.qdbp.tools.excel.json.BeanGroup
设置值列表
SheetFillCallback - com.gitee.qdbp.tools.excel中的类
Sheet填充回调函数
SheetFillCallback() - 类 的构造器com.gitee.qdbp.tools.excel.SheetFillCallback
 
SheetParseCallback - com.gitee.qdbp.tools.excel中的类
解析回调函数
SheetParseCallback() - 类 的构造器com.gitee.qdbp.tools.excel.SheetParseCallback
 
ShortKeyTools - com.gitee.qdbp.tools.specialized中的类
短链接生成器
https://www.cnblogs.com/zdz8207/p/java-shorturl-md5.html
ShortKeyTools() - 类 的构造器com.gitee.qdbp.tools.specialized.ShortKeyTools
 
SIMPLE - 类 中的静态变量com.gitee.qdbp.tools.instance.ExceptionLogger
记录简单日志的实例
SimpleItem(String) - 类 的构造器com.gitee.qdbp.tools.cache.InMemoryCache.SimpleItem
 
SnowFlakeIdWorker - com.gitee.qdbp.tools.specialized中的类
TwitterSnowFlake
SnowFlake的结构如下(每部分用-分开):
0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000
1位符号位: 不用。
SnowFlakeIdWorker(int) - 类 的构造器com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
构造函数
SnowFlakeIdWorker(long, int) - 类 的构造器com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
构造函数
SnowFlakeIdWorker(int, int) - 类 的构造器com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
SnowFlakeIdWorker(long, int, int) - 类 的构造器com.gitee.qdbp.tools.specialized.SnowFlakeIdWorker
 
sort(List<Map<String, Object>>, Orderings) - 类 中的静态方法com.gitee.qdbp.tools.utils.QueryTools
排序
SplitRule - com.gitee.qdbp.tools.excel.rule中的类
拆分规则
SplitRule(char...) - 类 的构造器com.gitee.qdbp.tools.excel.rule.SplitRule
 
storable() - 类 中的方法com.gitee.qdbp.tools.cache.AbstractCacheService
 
storable() - 接口 中的方法com.gitee.qdbp.tools.cache.ICacheService
是否可持久化
SyncLogCallback<T> - com.gitee.qdbp.tools.instance中的类
只记录警告日志的回调处理类
SyncLogCallback() - 类 的构造器com.gitee.qdbp.tools.instance.SyncLogCallback
 

T

thumbnail(byte[], int, int) - 类 中的静态方法com.gitee.qdbp.tools.files.ImageTools
生成缩略图
截取图片的中间部分(不产生变形)
如3000x2000生成100x100的缩略图
先截取中间的2000x2000的部分, 再缩小为100x100
thumbnail(InputStream, int, int) - 类 中的静态方法com.gitee.qdbp.tools.files.ImageTools
生成缩略图
截取图片的中间部分(不产生变形)
如3000x2000生成100x100的缩略图
先截取中间的2000x2000的部分, 再缩小为100x100
thumbnail(InputStream, OutputStream, int, int) - 类 中的静态方法com.gitee.qdbp.tools.files.ImageTools
生成缩略图
截取图片的中间部分(不产生变形)
如3000x2000生成100x100的缩略图
先截取中间的2000x2000的部分, 再缩小为100x100
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeMetadata
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToJson
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.json.MergeToList
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
将当前对象转换为子类对象
to(Class<T>) - 类 中的方法com.gitee.qdbp.tools.excel.XMetadata
将当前对象转换为子类对象
to(String) - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl.HttpUri
 
toArray(List<String>) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 
ToJsonMetadata - com.gitee.qdbp.tools.excel.json中的类
数据转换参数
ToJsonMetadata() - 类 的构造器com.gitee.qdbp.tools.excel.json.ToJsonMetadata
 
ToJsonProperties - com.gitee.qdbp.tools.excel.json中的类
数据转换配置
有哪些配置项详见MetadataTools.parseProperties(Properties)
exceltojson.x.main增加了file.name, id.field, self.name, copy.concat
exceltojson.x.merge.y.type = json|list|field
json = MergeToJson, 增加了file.name, id.field, self.name, self.with
list = MergeToList, 增加了file.name, id.field, self.name
field = MergeToField, 增加了file.name, id.field
exceltojson.1.main.self.name = users exceltojson.1.main.file.name = user.xlsx exceltojson.1.main.sheet.name = MainSheet exceltojson.1.main.field.rows = 1 exceltojson.1.main.id.field = id exceltojson.1.main.rule.map.gender = { "UNKNOWN":"未知|0", "MALE":"男|1", "FEMALE":"女|2" } exceltojson.1.main.rule.date.birthday = yyyy/MM/dd exceltojson.1.main.copy.concat = { keywords:"userName,nickName,deptName" } exceltojson.1.merge.1.type = list exceltojson.1.merge.1.sheet.name = AddressSheet exceltojson.1.merge.1.self.name = address exceltojson.1.merge.1.field.rows = 1 exceltojson.1.merge.1.id.field = id exceltojson.1.merge.2.type = field exceltojson.1.merge.2.sheet.name = AddressSheet exceltojson.1.merge.2.field.rows = 1 exceltojson.1.merge.2.id.field = id exceltojson.2.main.self.name = xxx ...
ToJsonProperties() - 类 的构造器com.gitee.qdbp.tools.excel.json.ToJsonProperties
 
toJsonString(Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
toKeyString(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将字符串转换为KeyString对象
toKeyString("{'key':1,'value':'冷水'}")
或: toKeyString("{'1':'冷水'}")
toKeyStrings(String) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
将字符串转换为KeyString对象数组
toKeyStrings("[{'key':1,'value':'冷水'},{'key':2,'value':'热水'}]")
或: toKeyStrings("{'1':'冷水','2':'热水','3':'直饮水'}")
--> List<KeyString>
toLogString(String, Object, List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
 
toLogString(Object) - 类 中的静态方法com.gitee.qdbp.tools.utils.JsonTools
 
toMap(Object) - 类 中的方法com.gitee.qdbp.tools.excel.SheetFillCallback
JavaBean转换为Map
tools - 类 中的变量com.gitee.qdbp.tools.http.HttpExecutor
 
toParamString(List<KeyString>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.condition.CellValueCondition
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexListCondition
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.condition.IndexRangeCondition
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.condition.NameListCondition
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.condition.Required
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.model.CellInfo
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.model.ColumnInfo
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.model.CopyConcat
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.model.FieldInfo
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.ClearRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.DateRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.IgnoreIllegalValue
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.MapRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.NumberRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.RateRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.excel.rule.SplitRule
 
toString() - 类 中的方法com.gitee.qdbp.tools.http.HttpUrl
 
toString() - 类 中的方法com.gitee.qdbp.tools.specialized.KeywordHandler
 
totime(Duration) - 类 中的方法com.gitee.qdbp.tools.cache.BaseCacheService
 

U

UiStyleTools - com.gitee.qdbp.tools.chart中的类
UI样式工具类
UiStyleTools() - 类 的构造器com.gitee.qdbp.tools.chart.UiStyleTools
 
upload(String, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools.HttpJsonImpl
 
upload(String, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
文件上传
注意, 这里的请求参数和响应报文都没有经过HttpHandler处理!
upload(HttpUrl, Map<String, P>) - 类 中的方法com.gitee.qdbp.tools.http.HttpTools
文件上传

V

validatePassword(String, String) - 类 中的方法com.gitee.qdbp.tools.specialized.PasswordHash
验证密码与 盐渍hash 是否匹配 return true 表示匹配,反之则false
validatePassword(char[], String) - 类 中的方法com.gitee.qdbp.tools.specialized.PasswordHash
验证密码与 盐渍hash 是否匹配 return true 表示匹配,反之则false
valueOf(String) - 枚举 中的静态方法com.gitee.qdbp.tools.excel.ExcelErrorCode
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法com.gitee.qdbp.tools.excel.json.MergeType
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法com.gitee.qdbp.tools.http.HttpMethod
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.gitee.qdbp.tools.excel.ExcelErrorCode
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法com.gitee.qdbp.tools.excel.json.MergeType
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法com.gitee.qdbp.tools.http.HttpMethod
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

X

XExcelExporter - com.gitee.qdbp.tools.excel中的类
Excel导出
XExcelExporter(XMetadata) - 类 的构造器com.gitee.qdbp.tools.excel.XExcelExporter
 
XExcelParser - com.gitee.qdbp.tools.excel中的类
excel2007版解析器
XExcelParser(XMetadata) - 类 的构造器com.gitee.qdbp.tools.excel.XExcelParser
 
XMetadata - com.gitee.qdbp.tools.excel中的类
excel配置数据
有哪些配置项详见MetadataTools.parseProperties(Properties)
XMetadata() - 类 的构造器com.gitee.qdbp.tools.excel.XMetadata
 
XMetadata(Config) - 类 的构造器com.gitee.qdbp.tools.excel.XMetadata
A B C D E F G H I J K L M N O P Q R S T U V X 
跳过导航链接

Copyright © 2020. All rights reserved.