com.ajjpj.afoundation.collection.immutable.AMapEntry Maven / Gradle / Ivy
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