Package | Description |
---|---|
cn.hutool.core.map.multi |
多参数类型的Map实现,包括集合类型值的Map和Table
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionValueMap<K,V>
值作为集合的Map实现,通过调用putValue可以在相同key时加入多个值,多个值用集合表示
此类可以通过传入函数自定义集合类型的创建规则 |
class |
ListValueMap<K,V>
值作为集合List的Map实现,通过调用putValue可以在相同key时加入多个值,多个值用集合表示
|
class |
SetValueMap<K,V>
值作为集合Set(LinkedHashSet)的Map实现,通过调用putValue可以在相同key时加入多个值,多个值用集合表示
|
Copyright © 2024. All rights reserved.