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

net.yadaframework.web.YadaDatatablesColumnSearch Maven / Gradle / Ivy

There is a newer version: 0.7.7.R4
Show newest version
package net.yadaframework.web;

import java.util.HashMap;

/**
 * This is a map because Spring wouldn't map it from the request otherwise
 *
 */
@SuppressWarnings("serial")
public class YadaDatatablesColumnSearch extends HashMap {
	
	/**
	 * 
	 * @return Search value to apply, can be null
	 */
	public String getValue() {
		return (String) this.get("value");
	}
	
	/**
	 *  
	 * @return true if the filter should be treated as a regular expression for advanced searching, false otherwise.
	 */
	public boolean isRegex() {
		return "true".equals(this.get("regex"));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy