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

com.ideaaedi.commonds.tuple.NameValue Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.tuple;

public interface NameValue {
    
    /*
     * 名称
     *
     * @return 名称
     */
    K getName();
    
    /*
     * 值
     *
     * @return 值
     */
    V getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy