Uses of Class
overit.geocall.sql.code.criterion.Filter
Packages that use Filter
-
Uses of Filter in overit.geocall.sql.code.criterion
Methods in overit.geocall.sql.code.criterion that return FilterModifier and TypeMethodDescriptionstatic FilterFilter.on()Instantiates a new filter that discards all clauses that match with a null set.static FilterFilter.onAny()Instantiates a new filter that discards all the records valued.static FilterInstantiates a new filter that discards the value associated with a specific key defined by the given string pattern.static FilterFilter.onNull()Instantiates a new filter that discards all clauses that doesn't match with a null set.static FilterInstantiates a new filter that discards all the value of a specific class type clz.
For example all Integer values, all String value ecc.static FilterFilter.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 FilterFilter.onUsefulString()Instantiates a new filter that discards all the clauses that contains a match with useless strings.static FilterFilter.onUselessLike()Instantiates a new filter that discards all the clauses that match with usefull-like strings.static FilterFilter.onUselessString()Instantiates a new filter that discards all the clauses that match with usefull strings.static FilterInstantiates 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 FilterInstantiates a new filter that discards all the clauses that doesn't match with the inValues array and/or match with the outValues array.static FilterFilter.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.Creates a new filter with a custom criterion given by input.