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

se.ugli.java.util.ImmutableMap Maven / Gradle / Ivy

There is a newer version: 1.8.2.4
Show newest version
package se.ugli.java.util;

import java.util.Optional;

public interface ImmutableMap extends ImmutableSet> {

    boolean containsKey(K key);

    boolean containsValue(V value);

    Optional get(K key);

    ImmutableSet keySet();

    ImmutableCollection values();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy