跳过导航链接
B C D F G H L M S T U V W 

B

buildDefaultFactory() - 类 中的静态方法top.lshaci.framework.utils.string.StringConverterFactory
Build default string converter factory
buildDefaultFactory(String) - 类 中的静态方法top.lshaci.framework.utils.string.StringConverterFactory
Build string converter factory of package name

C

ClassUtils - top.lshaci.framework.utils中的类
Class utils
0.0.4: Add method to get super class and interfaces generic type
1.0.2: 添加获取字段泛型类型的方法
1.0.7: 使用hutool替换commons lang3
ClassUtils() - 类 的构造器top.lshaci.framework.utils.ClassUtils
 
CommonUtils - top.lshaci.framework.utils中的类
公共的工具
CommonUtils() - 类 的构造器top.lshaci.framework.utils.CommonUtils
 
Constants - top.lshaci.framework.utils.constants中的接口
Framework util Constants 0.0.4: Add MSEC_DATE_FORMAT_STR and MSEC_DATE_FORMATTER 1.0.2: 添加DateTimeFormatter
ContinuousDateData - top.lshaci.framework.utils中的类
ContinuousDateData
ContinuousDateData() - 类 的构造器top.lshaci.framework.utils.ContinuousDateData
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2BigDecimalConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2BooleanConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2DateConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2DoubleConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2FloatConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2IntegerConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2LocalDateConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2LocalDateTimeConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2LocalTimeConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2LongConverter
 
convert(String) - 类 中的方法top.lshaci.framework.utils.string.converter.String2StringConverter
 
convert(String) - 接口 中的方法top.lshaci.framework.utils.string.converter.StringConverter
Convert the string to another type

D

day(LocalDate, LocalDate, Function<String, ? extends R>) - 类 中的静态方法top.lshaci.framework.utils.ContinuousDateData
生成每一天的数据 [start, end) 示例: Map<String, Object> data = new HashMap<>(); // key: dayStr (示例: 2020-10-10) List<LabelValueVO> day = day(startDate, endDate, dayStr -> { Object o = data.get(dayStr); return LabelValueVO.of(dayStr, Optional.ofNullable(o).orElse(0)); });

F

FileType - top.lshaci.framework.utils.enums中的枚举
File type
FileTypeUtil - top.lshaci.framework.utils中的类
File type util
1.0.7: 使用hutool替换commons lang3
FileTypeUtil() - 类 的构造器top.lshaci.framework.utils.FileTypeUtil
 
FileUploadUtils - top.lshaci.framework.utils中的类
文件上传工具
1.0.7: 使用hutool替换commons lang3
FileUploadUtils() - 类 的构造器top.lshaci.framework.utils.FileUploadUtils
 

G

geFileType(String) - 枚举 中的静态方法top.lshaci.framework.utils.enums.FileType
Get the file type with the file stream header
getClassLoader() - 类 中的静态方法top.lshaci.framework.utils.ClassUtils
Get current thread class loader
getClassSet(String, boolean) - 类 中的静态方法top.lshaci.framework.utils.ClassUtils
Get class set of the package name
getConverter(Class<T>) - 类 中的方法top.lshaci.framework.utils.string.StringConverterFactory
Get string converter of target type
getInterfaceGenericType(Class<?>) - 类 中的静态方法top.lshaci.framework.utils.ClassUtils
获取类实现第一个接口的第一个泛型类型
getInterfaceGenericType(Class<?>, int, int) - 类 中的静态方法top.lshaci.framework.utils.ClassUtils
获取类实现接口的泛型类型
getTargetValue(Class<T>, String) - 类 中的静态方法top.lshaci.framework.utils.StringConverterUtils
Get target value
getType(File) - 类 中的静态方法top.lshaci.framework.utils.FileTypeUtil
Get the file type with file
getType(InputStream) - 类 中的静态方法top.lshaci.framework.utils.FileTypeUtil
Get the file type with input stream
goOn(T, List<T>) - 类 中的静态方法top.lshaci.framework.utils.CommonUtils
获取上一个和下一个

H

HierarchyUtil - top.lshaci.framework.utils中的类
hierarchyUtil
HierarchyUtil() - 类 的构造器top.lshaci.framework.utils.HierarchyUtil
 

L

loadClass(String, boolean) - 类 中的静态方法top.lshaci.framework.utils.ClassUtils
Load class of class name
LONG_DATE_FORMAT_STR - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Long date format string
LONG_DATE_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Long date formatter(yyyy-MM-dd HH:mm:ss)
LONG_DATE_TIME_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Long date time formatter(yyyy-MM-dd HH:mm:ss)

M

month(LocalDate, LocalDate, Function<String, ? extends R>) - 类 中的静态方法top.lshaci.framework.utils.ContinuousDateData
生成每一月的数据 [start, end) 示例: Map<String, Object> data = new HashMap<>(); // key: monthStr (示例: 2020-10) List<LabelValueVO> month = month(startDate, endDate, monthStr -> { Object o = data.get(monthStr); return LabelValueVO.of(monthStr, Optional.ofNullable(o).orElse(0)); });
MSEC_DATE_FORMAT_STR - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Millisecond date format string
MSEC_DATE_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Millisecond date formatter(yyyy-MM-dd HH:mm:ss.SSS)
MSEC_DATE_TIME_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Msec date time formatter(yyyy-MM-dd HH:mm:ss.SSS)

S

saveFile(String, String, InputStream) - 类 中的静态方法top.lshaci.framework.utils.FileUploadUtils
保存文件到服务器
setChildren(List<T>, K, Function<T, K>, Function<T, K>, BiConsumer<T, List<T>>, Comparator<T>) - 类 中的方法top.lshaci.framework.utils.HierarchyUtil
递归设置下一级 public class Menu { private String id; private String parentId; private List<Menu> children; // ...省略getter和setter方法 }
setChildren(List<T>, Map<K, List<T>>, Function<T, K>, BiConsumer<T, List<T>>, Comparator<? super T>) - 类 中的静态方法top.lshaci.framework.utils.HierarchyUtil
递归设置下一级
SHORT_DATE_FORMAT_STR - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Short date format string
SHORT_DATE_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Short date formatter(yyyy-MM-dd)
SHORT_DATE_TIME_FORMATTER - 接口 中的静态变量top.lshaci.framework.utils.constants.Constants
Short date time formatter(yyyy-MM-dd)
String2BigDecimalConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to big decimal
1.0.7: 使用hutool替换commons lang3
String2BigDecimalConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2BigDecimalConverter
 
String2BooleanConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to boolean
1.0.7: 使用hutool替换commons lang3
String2BooleanConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2BooleanConverter
 
String2DateConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to date
0.0.4: Add millisecond conversion
1.0.7: 使用hutool替换commons lang3
String2DateConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2DateConverter
 
String2DoubleConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to double
1.0.7: 使用hutool替换commons lang3
String2DoubleConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2DoubleConverter
 
String2FloatConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to float
1.0.7: 使用hutool替换commons lang3
String2FloatConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2FloatConverter
 
String2IntegerConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to integer
1.0.7: 使用hutool替换commons lang3
String2IntegerConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2IntegerConverter
 
String2LocalDateConverter - top.lshaci.framework.utils.string.converter中的类
将字符串类型的时间转换为@LocalDate
1.0.7: 使用hutool替换commons lang3
String2LocalDateConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2LocalDateConverter
 
String2LocalDateTimeConverter - top.lshaci.framework.utils.string.converter中的类
将字符串类型的时间转换为LocalDateTime
1.0.7: 使用hutool替换commons lang3
String2LocalDateTimeConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2LocalDateTimeConverter
 
String2LocalTimeConverter - top.lshaci.framework.utils.string.converter中的类
将字符串类型的时间转换为LocalTime
1.0.7: 使用hutool替换commons lang3
String2LocalTimeConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2LocalTimeConverter
 
String2LongConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to long
1.0.7: 使用hutool替换commons lang3
String2LongConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2LongConverter
 
String2StringConverter - top.lshaci.framework.utils.string.converter中的类
Convert the string to string
1.0.7: 使用hutool替换commons lang3
String2StringConverter() - 类 的构造器top.lshaci.framework.utils.string.converter.String2StringConverter
 
StringConverter<T> - top.lshaci.framework.utils.string.converter中的接口
Convert the string to another type
StringConverterFactory - top.lshaci.framework.utils.string中的类
String converter factory
0.0.4: Add string converters type judgment
1.0.7: 使用hutool替换commons lang3
StringConverterUtils - top.lshaci.framework.utils中的类
String converter util
StringConverterUtils() - 类 的构造器top.lshaci.framework.utils.StringConverterUtils
 

T

top.lshaci.framework.utils - 程序包 top.lshaci.framework.utils
 
top.lshaci.framework.utils.constants - 程序包 top.lshaci.framework.utils.constants
 
top.lshaci.framework.utils.enums - 程序包 top.lshaci.framework.utils.enums
 
top.lshaci.framework.utils.exception - 程序包 top.lshaci.framework.utils.exception
 
top.lshaci.framework.utils.string - 程序包 top.lshaci.framework.utils.string
 
top.lshaci.framework.utils.string.converter - 程序包 top.lshaci.framework.utils.string.converter
 
trimSource(String) - 接口 中的方法top.lshaci.framework.utils.string.converter.StringConverter
Removed this source space

U

UtilErrorInfo - top.lshaci.framework.utils.enums中的枚举
UtilErrorInfo
UtilException - top.lshaci.framework.utils.exception中的异常错误
Framework utils exception
UtilException(UtilErrorInfo, Object...) - 异常错误 的构造器top.lshaci.framework.utils.exception.UtilException
创建工具类异常

V

valueOf(String) - 枚举 中的静态方法top.lshaci.framework.utils.enums.FileType
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法top.lshaci.framework.utils.enums.UtilErrorInfo
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法top.lshaci.framework.utils.enums.FileType
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法top.lshaci.framework.utils.enums.UtilErrorInfo
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
verifySuffix(String, List<String>) - 类 中的静态方法top.lshaci.framework.utils.FileUploadUtils
通过文件后缀名验证上传文件是否允许
verifySuffix(InputStream, List<FileType>) - 类 中的静态方法top.lshaci.framework.utils.FileUploadUtils
通过文件头信息验证上传文件是否允许

W

week(LocalDate, LocalDate, Function<LocalDate, ? extends R>) - 类 中的静态方法top.lshaci.framework.utils.ContinuousDateData
生成每一周的数据 [start, end) 示例: Map<String, Object> data = new HashMap<>(); // key: year + "-" + week (示例: 2020-40) List<LabelValueVO> week = week(startDate, endDate, day -> { int week = day.get(WeekFields.ISO.weekOfWeekBasedYear()); String key = day.getYear() + "-" + week; Object o = data.get(key); // label=2020-09-28, value=0 日期为星期一 // return LabelValueVO.of(key, Optional.ofNullable(o).orElse(0)); // label=2020-40, value=0 return LabelValueVO.of(day.toString(), Optional.ofNullable(o).orElse(0)); });
week(LocalDate, LocalDate, Function<LocalDate, ? extends R>, DayOfWeek) - 类 中的静态方法top.lshaci.framework.utils.ContinuousDateData
生成每一周的数据 [start, end) 示例: Map<String, Object> data = new HashMap<>(); // key: year + "-" + week (示例: 2020-40) List<LabelValueVO> week = week(startDate, endDate, day -> { int week = day.get(WeekFields.ISO.weekOfWeekBasedYear()); String key = day.getYear() + "-" + week; Object o = data.get(key); // label=2020-09-28, value=0 指定的dayOfWeek // return LabelValueVO.of(key, Optional.ofNullable(o).orElse(0)); // label=2020-40, value=0 return LabelValueVO.of(day.toString(), Optional.ofNullable(o).orElse(0)); }, DayOfWeek.MONDAY);
B C D F G H L M S T U V W 
跳过导航链接

Copyright © 2020. All rights reserved.