Package | Description |
---|---|
cn.hutool.core.convert.impl |
各种类型转换的实现类,其都为Converter接口的实现,用于将未知的Object类型转换为指定类型
|
cn.hutool.core.lang |
语言特性包,包括大量便捷的数据结构,例如验证器Validator,分布式ID生成器Snowflake等
|
cn.hutool.core.lang.mutable |
提供可变值对象的封装,用于封装int、long等不可变值,使其可变
|
cn.hutool.core.map |
Map相关封装,提供特殊Map实现以及Map工具MapUtil
|
Modifier and Type | Method and Description |
---|---|
protected Pair<?,?> |
PairConverter.convertInternal(Object value) |
Modifier and Type | Method and Description |
---|---|
Pair<Long,Long> |
Snowflake.getIdScopeByTimestamp(long timestampStart,
long timestampEnd)
根据传入时间戳-计算ID起终点
|
Pair<Long,Long> |
Snowflake.getIdScopeByTimestamp(long timestampStart,
long timestampEnd,
boolean ignoreCenterAndWorker)
根据传入时间戳-计算ID起终点 Gitee/issues/I60M14
|
static <K,V> Pair<K,V> |
Pair.of(K key,
V value)
构建
Pair 对象 |
Modifier and Type | Method and Description |
---|---|
static Dict |
Dict.of(Pair<String,Object>... pairs)
根据给定的Pair数组创建Dict对象
|
Modifier and Type | Class and Description |
---|---|
class |
MutablePair<K,V>
可变
Pair 实现,可以修改键和值 |
Modifier and Type | Method and Description |
---|---|
Pair<K,V> |
MutablePair.get() |
Modifier and Type | Method and Description |
---|---|
void |
MutablePair.set(Pair<K,V> pair) |
Modifier and Type | Method and Description |
---|---|
static <K,V> Map<K,V> |
MapUtil.of(Pair<K,V>... pairs)
Deprecated.
方法容易歧义,请使用
#ofEntries(Entry[]) |
Copyright © 2024. All rights reserved.