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

goja.rapid.mvc.datatables.DTSearch Maven / Gradle / Ivy

The newest version!
package goja.rapid.mvc.datatables;

/**
 * 

* * @author sogYF * @version 1.0 * @since JDK 1.6 */ public final class DTSearch { private final String value; private final boolean regex; private DTSearch(String value, boolean regex) { this.value = value; this.regex = regex; } public static DTSearch create(String value, boolean regex) { return new DTSearch(value, regex); } public static DTSearch create(String value) { return create(value, false); } public String getValue() { return value; } public boolean isRegex() { return regex; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy