Package | Description |
---|---|
org.dromara.hutool.core.convert.impl |
各种类型转换的实现类,其都为Converter接口的实现,用于将未知的Object类型转换为指定类型
|
org.dromara.hutool.core.lang.mutable |
提供可变值对象的封装,用于封装int、long等不可变值,使其可变
|
org.dromara.hutool.core.lang.tuple | |
org.dromara.hutool.core.map |
Map相关封装,提供特殊Map实现以及Map工具MapUtil
|
org.dromara.hutool.json.serializer.impl |
默认实现的序列化和反序列化
|
Modifier and Type | Method and Description |
---|---|
Triple<?,?,?> |
TripleConverter.convert(Type leftType,
Type middleType,
Type rightType,
Object value)
转换对象为指定键值类型的指定类型Map
|
Modifier and Type | Class and Description |
---|---|
class |
MutableTriple<L,M,R>
可变三元组对象
|
Modifier and Type | Method and Description |
---|---|
Triple<L,M,R> |
Triple.clone() |
static <L,M,R> Triple<L,M,R> |
Triple.of(L left,
M middle,
R right)
构建Triple对象
|
Modifier and Type | Method and Description |
---|---|
Triple<L,M,R> |
TripleTable.getByLeft(L lValue)
通过左值查找三元组(所有值)
|
Triple<L,M,R> |
TripleTable.getByMiddle(M mValue)
通过中值查找三元组(所有值)
|
Triple<L,M,R> |
TripleTable.getByRight(R rValue)
通过右值查找三元组(所有值)
|
Constructor and Description |
---|
TripleTable(List<Triple<L,M,R>> triples)
构造
|
Modifier and Type | Method and Description |
---|---|
Triple<?,?,?> |
TripleDeserializer.deserialize(JSON json,
Type deserializeType) |
Copyright © 2025. All rights reserved.