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

net.neoforged.camelot.db.api.StringSearch Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
package net.neoforged.camelot.db.api;

@FunctionalInterface
public interface StringSearch {
    String asQuery();

    static StringSearch contains(String value) {
        return () -> "%" + value + "%";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy