All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kaka.util.KeyValue Maven / Gradle / Ivy

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy