- java.lang.Object
-
- develop.toolkit.base.struct.KeyValuePair<K,V>
-
- 所有已实现的接口:
Serializable
public class KeyValuePair<K,V> extends Object implements Serializable
键值对结构体- 作者:
- qiushui on 2018-05-24.
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 KeyValuePair()
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 StringformatString(String separator)美化成字符串static <K,V>
KeyValuePair<K,V>of(Map.Entry<K,V> entry)从Entry初始化static <K,V>
KeyValuePair<K,V>of(K key, V value)带值初始化static <T> KeyValuePair<T,T>of(T[] objs)StringtoString()
-
-
-
方法详细资料
-
of
public static <K,V> KeyValuePair<K,V> of(K key, V value)
带值初始化
-
of
public static <T> KeyValuePair<T,T> of(T[] objs)
-
of
public static <K,V> KeyValuePair<K,V> of(Map.Entry<K,V> entry)
从Entry初始化
-
-