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

com.github.t3t5u.common.database.Matchers Maven / Gradle / Ivy

package com.github.t3t5u.common.database;

public final class Matchers {
	private Matchers() {
	}

	public static Like like(final String like) {
		return new Like(new LikeMatcher(like));
	}

	public static Like like(final String like, final Character escape) {
		return new Like(new LikeMatcher(like, escape));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy