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

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

The 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 - 2024 Weber Informatics LLC | Privacy Policy