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