com.zpf.api.IKVPair Maven / Gradle / Ivy
package com.zpf.api;
/**
* 键值对
* Created by ZPF on 2019/2/28.
*/
public interface IKVPair {
K getKey();
V getValue();
}
package com.zpf.api;
/**
* 键值对
* Created by ZPF on 2019/2/28.
*/
public interface IKVPair {
K getKey();
V getValue();
}