Uses of Interface
net.sf.ehcache.search.expression.Criteria
-
Packages that use Criteria Package Description net.sf.ehcache.search This package contains classes for ehcache core search API.net.sf.ehcache.search.expression This package contains classes for search expression types (ie.net.sf.ehcache.search.impl This package contains an implementation for Results.net.sf.ehcache.store Store package. -
-
Uses of Criteria in net.sf.ehcache.search
Methods in net.sf.ehcache.search that return Criteria Modifier and Type Method Description CriteriaAttribute. between(T min, T max)Create a range criteria between the given min/max (inclusive).CriteriaAttribute. between(T min, T max, boolean minInclusive, boolean maxInclusive)Create a range criteria between the given min/max with specified inclusivenessCriteriaAttribute. eq(T value)Create a criteria where this attribute is equal to the given valueCriteriaAttribute. ge(T value)Create a criteria where this attribute is greater than or equal to the given valueCriteriaAttribute. gt(T value)Create a criteria where this attribute is greater than the given valueCriteriaAttribute. ilike(java.lang.String regex)Create a criteria where this attribute's toString() matches the given expression SeeILikefor the expression syntaxCriteriaAttribute. in(java.util.Collection<? extends T> values)Create a criteria where this attribute is 'in' (ie.CriteriaAttribute. isNull()Create a criteria that requires no value for this attributeCriteriaAttribute. le(T value)Create a criteria where this attribute is less than or equal to the given valueCriteriaAttribute. lt(T value)Create a criteria where this attribute is less than the given valueCriteriaAttribute. ne(T value)Create a criteria where this attribute is not equal to the given valueCriteriaAttribute. notIlike(java.lang.String regex)Create a criteria where this attribute's toString() does not match the given expression SeeILikefor the expression syntaxCriteriaAttribute. notNull()Create a criteria that accepts any non-null value for this attributeMethods in net.sf.ehcache.search with parameters of type Criteria Modifier and Type Method Description QueryQuery. addCriteria(Criteria criteria)Adds a criteria to the query -
Uses of Criteria in net.sf.ehcache.search.expression
Classes in net.sf.ehcache.search.expression that implement Criteria Modifier and Type Class Description classAlwaysMatchCriteria that always return trueclassAndA search criteria composed of the logical "and" of two or more other criteriaclassBaseCriteriaBase class for all criteria typesclassBetweenRange criteriaclassComparableValueAbstract base class for criteria involvingComparablevaluesclassEqualToA comparison operator meaning Java "equals to" conditionclassGreaterThanGreater than criteriaclassGreaterThanOrEqualGreater than or equal criteriaclassILikeA regular expression criteria that matches attribute string values.classInCollectionCriteria for inclusion in a given Collection (presumably a Set) of valuesclassIsNullTests whether the value of attribute with given name is nullclassLessThanLess than criteriaclassLessThanOrEqualLess than or equal criteriaclassNotA search criteria composed of the logical "not" (ie.classNotEqualToCriteria for plain "not equals to" conditionclassNotILikeInverse ofILikeclassNotNullclassOrA search criteria composed of the logical "or" of two or more other criteriaMethods in net.sf.ehcache.search.expression that return Criteria Modifier and Type Method Description CriteriaAlwaysMatch. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaAnd. and(Criteria other)CriteriaBaseCriteria. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaCriteria. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaNot. getCriteria()Criteria[]And. getCriterion()Return criterionCriteria[]Or. getCriterion()Return criteriaCriteriaBaseCriteria. not()Produce a criteria that is the boolean "not" of thisCriteriaCriteria. not()Produce a criteria that is the boolean "not" of thisCriteriaAlwaysMatch. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaBaseCriteria. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaCriteria. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaOr. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaMethods in net.sf.ehcache.search.expression with parameters of type Criteria Modifier and Type Method Description CriteriaAlwaysMatch. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaAnd. and(Criteria other)CriteriaBaseCriteria. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaCriteria. and(Criteria other)Produce a criteria that is the boolean "and" of this and the given other criteriaCriteriaAlwaysMatch. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaBaseCriteria. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaCriteria. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaCriteriaOr. or(Criteria other)Produce a criteria that is the boolean "or" of this and the given other criteriaConstructors in net.sf.ehcache.search.expression with parameters of type Criteria Constructor Description And(Criteria lhs, Criteria rhs)Simple constructor for two criteriaNot(Criteria c)Construct a "not" criteria of the given criteriaOr(Criteria lhs, Criteria rhs)Simple constructor for two criteria -
Uses of Criteria in net.sf.ehcache.search.impl
Methods in net.sf.ehcache.search.impl with parameters of type Criteria Modifier and Type Method Description protected voidBaseQueryInterpreter. processCriteria(Criteria criteria) -
Uses of Criteria in net.sf.ehcache.store
Methods in net.sf.ehcache.store that return Criteria Modifier and Type Method Description CriteriaStoreQuery. getCriteria()Get the search criteria
-