com.kaka.util.KeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kaka-core Show documentation
Show all versions of kaka-core Show documentation
An event driven framework
The newest version!
package com.kaka.util;
/**
* 键值对象
*
* @param 键泛型限定类型
* @param 值泛型限定类型
* @author zkpursuit
*/
public interface KeyValue {
void setKey(K key);
void setValue(V value);
K getKey();
V getValue();
}