com.dahuatech.hutool.core.lang.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.core.lang;
import com.dahuatech.hutool.core.clone.CloneSupport;
import java.io.Serializable;
/**
* 键值对对象,只能在构造时传入键值
*
* @author looly
* @param 键类型
* @param 值类型
* @since 4.1.5
*/
public class Pair extends CloneSupport> implements Serializable {
private static final long serialVersionUID = 1L;
private K key;
private V value;
/**
* 构造
*
* @param key 键
* @param value 值
*/
public Pair(K key, V value) {
this.key = key;
this.value = value;
}
/**
* 获取键
*
* @return 键
*/
public K getKey() {
return this.key;
}
/**
* 获取值
*
* @return 值
*/
public V getValue() {
return this.value;
}
@Override
public String toString() {
return "Pair [key=" + key + ", value=" + value + "]";
}
}