com.g2forge.alexandria.java.associative.IAssociation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.associative;
import java.util.Optional;
public interface IAssociation {
public Optional get(K key, boolean remove);
public void put(K key, V value);
public void remove(K key);
public Optional set(K key, V value);
}