Package | Description |
---|---|
cn.hutool.core.lang |
语言特性包,包括大量便捷的数据结构,例如验证器Validator,分布式ID生成器Snowflake等
|
cn.hutool.core.util |
提供各种工具方法,按照归类入口为XXXUtil,如字符串工具StrUtil等
|
cn.hutool.db |
Hutool-db是一个在JDBC基础上封装的数据库操作工具类,通过包装,使用ActiveRecord思想操作数据库。
|
cn.hutool.dfa |
DFA全称为:Deterministic Finite Automaton,即确定有穷自动机。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultSegment<T extends Number>
片段默认实现
|
Modifier and Type | Method and Description |
---|---|
static Segment<Integer> |
PageUtil.toSegment(int pageNo,
int pageSize)
将页数和每页条目数转换为开始位置和结束位置
此方法用于包括结束位置的分页方法 例如: 页码:0,每页10 =》 [0, 10] 页码:1,每页10 =》 [10, 20] …… 当 PageUtil.setFirstPageNo(int) 设置为1时:
页码:1,每页10 =》 [0, 10]
页码:2,每页10 =》 [10, 20]
……
|
Modifier and Type | Class and Description |
---|---|
class |
Page
分页对象
|
Modifier and Type | Class and Description |
---|---|
class |
FoundWord
匹配到的单词,包含单词,text中匹配单词的内容,以及匹配内容在text中的下标,
下标可以用来做单词的进一步处理,如果替换成**
|
Copyright © 2024. All rights reserved.