![JAR search and dependency download from the Maven repository](/logo.png)
me.redtea.carcadex.data.schema.SchemaStrategy Maven / Gradle / Ivy
package me.redtea.carcadex.data.schema;
import java.util.Collection;
import java.util.Optional;
import java.util.function.Predicate;
public interface SchemaStrategy {
Collection all();
V get(K key);
void insert(K key, V value);
void remove(K key);
void removeAll();
Collection find(Predicate predicate);
Optional findAny(Predicate predicate);
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy