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

com.ajjpj.afoundation.collection.immutable.AMapEntry Maven / Gradle / Ivy

The newest version!
package com.ajjpj.afoundation.collection.immutable;

/**
 * This interface encapsulates an entry of an AMap, i.e. a key-value pair.
 *
 * @author arno
 */
public interface AMapEntry {
    K getKey();
    V getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy