org.boon.Entry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boon Show documentation
Show all versions of boon Show documentation
Simple opinionated Java for the novice to expert level Java Programmer.
Low Ceremony. High Productivity. A real boon to Java to developers!
package org.boon;
import java.io.Serializable;
import java.util.Map;
/**
* Created by Richard on 9/9/14.
*/
public interface Entry extends Comparable, Map.Entry,
Serializable, Cloneable {
K key();
V value();
boolean equals(Entry o);
}