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

top.cutexingluo.tools.common.data.PairEntry Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package top.cutexingluo.tools.common.data;

/**
 * 二元组方法接口
 * 

A map entry (key-value pair). like Map.Entry

* * @author XingTian * @version 1.0.0 * @date 2024/7/7 13:21 * @since 1.0.5 */ public interface PairEntry { /** * @return the key corresponding to this entry */ K getKey(); /** * @return the value corresponding to this entry */ V getValue(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy