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

org.boon.Entry Maven / Gradle / Ivy

Go to download

Simple opinionated Java for the novice to expert level Java Programmer. Low Ceremony. High Productivity. A real boon to Java to developers!

There is a newer version: 0.34
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy