package com.onaro.util.jfc.tables.filter; /** * Performs an exact-match or range filtering by using the following syntax of the "filter by" expression:
    *
  1. Exact match - if the pattern is a number (any number), only equal values will match *
  2. Greater than - if the pattern is ">#", any numeric value that is greater than the one in the pattern * will match *
  3. Smaller than - if the pattern is "<#", any numeric value that is smaller than the one in the pattern * will match *
  4. Range - if the pattern is "#..#", any numeric value between the two numbers (inclusive) will match */ public class NumberFilter extends AbstractFactoryFilter { public NumberFilter() { super(new NumberFilterMatcherFactory()); } @Override public String getUsageTooltip() { return Messages.INSTANCE.getNumberFilterUsageTooltip(); } }