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

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