Uses of Class
overit.geocall.sql.code.criterion.Filter

Packages that use Filter
Package
Description
 
  • Uses of Filter in overit.geocall.sql.code.criterion

    Modifier and Type
    Method
    Description
    static Filter
    Filter.on()
    Instantiates a new filter that discards all clauses that match with a null set.
    static Filter
    Filter.onAny()
    Instantiates a new filter that discards all the records valued.
    static Filter
    Filter.onName(String pattern)
    Instantiates a new filter that discards the value associated with a specific key defined by the given string pattern.
    static Filter
    Filter.onNull()
    Instantiates a new filter that discards all clauses that doesn't match with a null set.
    static Filter
    Filter.onType(Class clz)
    Instantiates a new filter that discards all the value of a specific class type clz.
    For example all Integer values, all String value ecc.
    static Filter
    Filter.onUsefulLike()
    Instantiates a new filter that discards all the LIKE clauses (given by input) relating to a string formed by the following reg-exp ".*%.*", which begins and ends with at least one character and inside it presents the '%' character.
    For example if the following string "a%b" is passed to be evaluated with the like clause (for example "AUSENAME LIKE a%b"), the string will be discarded.
    static Filter
    Instantiates a new filter that discards all the clauses that contains a match with useless strings.
    static Filter
    Filter.onUselessLike()
    Instantiates a new filter that discards all the clauses that match with usefull-like strings.
    static Filter
    Instantiates a new filter that discards all the clauses that match with usefull strings.
    static Filter
    Filter.onValue(Class clz, String valuePattern)
    Instantiates a new filter that discards all the value that match with the valuePattern and with the type class clz, passed by input.
    For example all String values that start with the 'a' charcter.
    static Filter
    Filter.onValues(Object[] inValues, Object[] outValues)
    Instantiates a new filter that discards all the clauses that doesn't match with the inValues array and/or match with the outValues array.
    static Filter
    Filter.onValues(Collection inValues, Collection outValues)
    Instantiates a new filter that discards all the clauses that doesn't match with the inValues and/or match with the outValues.
    Filter.take(Criterion a)
    Creates a new filter with a custom criterion given by input.