481 Commits

Author SHA1 Message Date
Looly
ee90bc7e87 add copyright 2023-03-27 03:28:19 +08:00
Looly
c1d668ecb1 fix pom 2023-03-27 02:28:49 +08:00
Looly
2789d8cce7 update version 2023-03-27 02:12:29 +08:00
Looly
4fca8310e7 fix code 2023-03-27 02:02:10 +08:00
Looly
16f7549c7d fix code 2023-03-27 01:47:02 +08:00
Looly
a745f1be80 fix code 2023-03-26 17:15:17 +08:00
Looly
7581ab6428 fix code 2023-03-26 13:18:45 +08:00
Looly
1247a59b19 update jdbc driver name 2023-03-21 00:12:08 +08:00
Looly
9d2ab2f95e fix code 2023-03-20 23:45:42 +08:00
Looly
a8a8c09ae8 fix code 2023-03-17 02:04:13 +08:00
Looly
5623081278 fix code 2023-03-17 01:31:59 +08:00
Looly
bcb83e87de fix code 2023-03-17 00:55:08 +08:00
Looly
ed512e3377 fix code 2023-03-17 00:35:27 +08:00
Looly
569512fb56 fix code 2023-03-17 00:06:44 +08:00
Looly
0797ceb12d fix test 2023-03-15 16:22:10 +08:00
Looly
48fdda9faf fix code 2023-03-15 03:07:19 +08:00
Looly
c1a895bce5 fix code 2023-03-13 12:22:51 +08:00
Looly
1ad628f944 fix code 2023-03-13 11:41:20 +08:00
Looly
48eec2a8ae fix code 2023-03-13 05:04:50 +08:00
Looly
5b559d19bd fix code 2023-03-13 01:11:43 +08:00
Looly
bb89901961 fix code 2023-03-12 15:04:01 +08:00
Looly
1a8a97e7b8 fix code 2023-03-09 20:51:23 +08:00
Looly
ececce7c52 fix code 2023-03-07 16:12:48 +08:00
emptypoint
f79c670446 1.update code;
2.fix doc;
3.add test method;
2023-03-05 13:51:15 +08:00
Looly
0767fcd175 add Automatic-Module-Name 2023-03-01 18:48:32 +08:00
Looly
fca001acc8 fix code 2023-02-15 15:49:38 +08:00
Looly
0a8e8d2893 add test 2023-02-15 15:43:27 +08:00
Looly
b9417a4114 fix code 2023-01-09 18:01:48 +08:00
Looly
228d0a438a fix code 2022-12-27 17:46:28 +08:00
Looly
22933829e2 fix code 2022-12-14 18:20:05 +08:00
Looly
9b47a416ce fix bug 2022-12-11 13:48:56 +08:00
Looly
68d28c4fd4 add exception for json 2022-11-29 21:50:51 +08:00
Looly
b696ad4b08 fix code 2022-11-03 00:10:25 +08:00
Looly
eff36d7ecf fix code 2022-10-23 13:33:20 +08:00
Looly
d6be80f8ea fix code 2022-09-30 23:00:15 +08:00
Looly
d458b1451c fix code 2022-09-27 23:38:05 +08:00
Looly
1030f22757 fix code 2022-09-24 11:54:13 +08:00
Looly
ba5f1f5264 fix code 2022-09-22 03:33:30 +08:00
Looly
401a4cda5a del setting 2022-09-22 03:00:13 +08:00
Looly
f2629f775b 精简XXXTypeGetter 2022-09-22 02:31:28 +08:00
Looly
3b5ba16c93 add SafeConcurrentHashMap 2022-09-15 10:36:20 +08:00
Looly
adb1dc5f62 add test 2022-09-13 23:22:20 +08:00
Looly
6f0127be35 fix code 2022-09-13 22:12:39 +08:00
VampireAchao
f70ff3186c :trollface: 改漏了 2022-09-07 15:12:11 +08:00
achao
f732d14809 重构Jdk自带的Lambda体系,支持序列化+包裹受检异常
改动如下:
1. AnnotationUtil 115行 简化 predicate::test 为 predicate
2. 调整 Func1 为 SerFunction
3. 调整 Func0 为 SerSupplier
4. 移除 GenericBuilder 对于多参数构造双冒号简写支持,直接采用lambda方式,例如GenericBuilder.of(Box::new, 2048L, "Hello Partner!", 222, 333, 444)改为GenericBuilder.of(() -> new Box(2048L, "Hello Partner!", 222, 333, 444))
5. 移除 CheckedUtil,现有重构后的Lambda 支持包裹异常
6. 移除 Func,该函数式接口属于泛型可变参数,不推荐使用
7. 移除 Supplier1,1参数Supplier应该使用SerFunction替代
8. 移除 Supplier2,2参数Supplier应该使用SerBiFunction替代
9. 移除 Supplier3,3参数Supplier应该使用SerFunction3替代(因第4条更改思路,该SerFunction3并未添加)
10. 移除 Supplier4,4参数Supplier应该使用SerFunction4替代(因第4条更改思路,该SerFunction4并未添加)
11. 移除 Supplier5,5参数Supplier应该使用SerFunction5替代(因第4条更改思路,该SerFunction5并未添加)
12. 移除 VoidFunc,该函数式接口属于泛型可变参数,不推荐使用
13. 调整 VoidFunc0 为 SerRunnable
14. 调整 VoidFunc1 为 SerConsumer
15. 调整 EntryStream 泛型命名、完善javadoc
16. EnumUtil 273行 简化 field::callWithRuntimeException 为 field
2022-09-07 15:08:11 +08:00
Looly
5264d90072 update dependency 2022-08-16 10:55:21 +08:00
Looly
47fe31cf41 add test 2022-08-09 21:40:25 +08:00
Looly
aa403cbe98 add test 2022-08-06 18:45:01 +08:00
Looly
7769822e11 fix code 2022-07-29 23:05:20 +08:00
Looly
681535c575 fix code 2022-07-16 22:46:31 +08:00