Uses of Interface
org.eclipse.persistence.jpa.jpql.utility.filter.Filter
-
Packages that use Filter Package Description org.eclipse.persistence.jpa.jpql.tools org.eclipse.persistence.jpa.jpql.tools.utility.filter org.eclipse.persistence.jpa.jpql.utility.filter -
-
Uses of Filter in org.eclipse.persistence.jpa.jpql.tools
Classes in org.eclipse.persistence.jpa.jpql.tools that implement Filter Modifier and Type Class Description protected static classAbstractContentAssistVisitor.CollectionMappingFilterprotected static classAbstractContentAssistVisitor.DifferentComparisonFilterprotected static classAbstractContentAssistVisitor.MappingTypeFilterThisFilteris responsible to filter out the mappings that can't have their type assignable to the one passed in.protected static classAbstractContentAssistVisitor.PropertyMappingFilterFields in org.eclipse.persistence.jpa.jpql.tools declared as Filter Modifier and Type Field Description protected Filter<IMapping>AbstractContentAssistVisitor.FilteringMappingCollector. filterTheFilterused to filter out either the collection type properties or the non- collection type properties.protected Filter<IMapping>AbstractContentAssistVisitor.MappingFilterBuilder. filterprotected static Filter<Expression>AbstractContentAssistVisitor. INVALID_IDENTIFIER_FILTERThisFilteris used to say theExpressionis invalid without doing anything.protected static Filter<Expression>AbstractContentAssistVisitor. VALID_IDENTIFIER_FILTERThisFilteris used to say theExpressionis valid without doing anything.Fields in org.eclipse.persistence.jpa.jpql.tools with type parameters of type Filter Modifier and Type Field Description protected Map<String,Filter<Expression>>AbstractContentAssistVisitor. identifierFiltersThis map contains theFilterthat is used to determine when an identifier is a valid proposal, some of them depends on the expression's type.Methods in org.eclipse.persistence.jpa.jpql.tools that return Filter Modifier and Type Method Description protected Filter<Expression>AbstractContentAssistVisitor. buildCollectionCompoundTypeFilter()protected Filter<Expression>AbstractContentAssistVisitor. buildDifferentComparisonFilter()protected Filter<IMapping>AbstractContentAssistVisitor.FilteringMappingCollector. buildFilter(String suffix)protected Filter<IMapping>AbstractContentAssistVisitor. buildMappingFilter(AbstractPathExpression expression, Filter<IMapping> filter)protected Filter<IMapping>AbstractContentAssistVisitor. buildMappingFilter(Expression expression)protected Filter<IMapping>AbstractContentAssistVisitor.FilteringMappingCollector. buildMappingNameFilter(String suffix)protected Filter<Expression>AbstractContentAssistVisitor. buildNonCollectionCompoundTypeFilter()protected Filter<Expression>AbstractContentAssistVisitor. getFilter(String identifier)protected Filter<IMapping>AbstractContentAssistVisitor. getMappingCollectionFilter()protected Filter<IMapping>AbstractContentAssistVisitor. getMappingPropertyFilter()Methods in org.eclipse.persistence.jpa.jpql.tools with parameters of type Filter Modifier and Type Method Description protected AbstractContentAssistVisitor.FilteringMappingCollectorAbstractContentAssistVisitor. buildFilteringMappingCollector(AbstractPathExpression expression, Resolver resolver, Filter<IMapping> filter, String pattern)protected AbstractContentAssistVisitor.MappingCollectorAbstractContentAssistVisitor. buildMappingCollector(AbstractPathExpression expression, Resolver resolver, Filter<IMapping> filter)protected Filter<IMapping>AbstractContentAssistVisitor. buildMappingFilter(AbstractPathExpression expression, Filter<IMapping> filter)protected voidAbstractContentAssistVisitor. visitPathExpression(AbstractPathExpression expression, Filter<IMapping> filter)Visits the givenAbstractPathExpressionby attempting to resolve the path. -
Uses of Filter in org.eclipse.persistence.jpa.jpql.tools.utility.filter
Classes in org.eclipse.persistence.jpa.jpql.tools.utility.filter that implement Filter Modifier and Type Class Description classAndFilter<T>This filter will "accept" any object that is accept by both of the specified wrapped filters.classCompoundFilter<T>This filter provides a simple framework for combining the behavior of a pair of filters.Fields in org.eclipse.persistence.jpa.jpql.tools.utility.filter declared as Filter Modifier and Type Field Description protected Filter<T>CompoundFilter. filter1The firstFilterused to accept the value.protected Filter<T>CompoundFilter. filter2The secondFilterused to accept the value.Methods in org.eclipse.persistence.jpa.jpql.tools.utility.filter that return Filter Modifier and Type Method Description static <T> Filter<T>AndFilter. and(Filter<T>... filters)Creates a newANDFilterthat will "accept" any object that is accept by all of the specified filters.Filter<T>CompoundFilter. getFilter1()Returns the leftFilterof this compound filter.Filter<T>CompoundFilter. getFilter2()Returns the secondFilterof this compound filter.Methods in org.eclipse.persistence.jpa.jpql.tools.utility.filter with parameters of type Filter Modifier and Type Method Description static <T> Filter<T>AndFilter. and(Filter<T>... filters)Creates a newANDFilterthat will "accept" any object that is accept by all of the specified filters.Constructors in org.eclipse.persistence.jpa.jpql.tools.utility.filter with parameters of type Filter Constructor Description AndFilter(Filter<T> filter1, Filter<T> filter2)Creates a newAndFilterthat will "accept" any object that is accept by both of the specified wrapped filters.CompoundFilter(Filter<T> filter1, Filter<T> filter2)Creates a newCompoundFilterthat will "accept" any object that is accept by both of the specified wrapped filters. -
Uses of Filter in org.eclipse.persistence.jpa.jpql.utility.filter
Classes in org.eclipse.persistence.jpa.jpql.utility.filter that implement Filter Modifier and Type Class Description classNullFilterAnullimplementation of aFilter.Methods in org.eclipse.persistence.jpa.jpql.utility.filter that return Filter Modifier and Type Method Description static <T> Filter<T>NullFilter. instance()Returns the singleton instance of thisNullFilter.
-