* @return the value
*/
public List<FilterConfig> getValue() {
List<FilterConfig> configs = new ArrayList<FilterConfig>();
if (eq != null && eq.getValue() != null && eq.isValid()) {
FilterConfig config = new BaseNumericFilterConfig("numeric", "eq", eq.getValue());
configs.add(config);
}
if (lt != null && lt.getValue() != null && lt.isValid()) {
FilterConfig config = new BaseNumericFilterConfig("numeric", "lt", lt.getValue());
configs.add(config);
}
if (gt != null && gt.getValue() != null && gt.isValid()) {
FilterConfig config = new BaseNumericFilterConfig("numeric", "gt", gt.getValue());
configs.add(config);
}
return configs;
}