Uses of Interface
org.springframework.ldap.filter.Filter

Packages that use Filter
org.springframework.ldap.filter Utility classes for dynamically building LDAP filters. 
 

Uses of Filter in org.springframework.ldap.filter
 

Classes in org.springframework.ldap.filter that implement Filter
 class AbstractFilter
          Convenience class that implements most of the methods in the Filter interface.
 class AndFilter
          A filter for a logical AND.
 class BinaryLogicalFilter
          Abstract superclass for binary logical operations, that is "AND" and "OR" operations.
 class CompareFilter
          Abstract superclass for filters that compare values.
 class EqualsFilter
          A filter for 'equals'.
 class GreaterThanOrEqualsFilter
          A filter to compare >=.
 class LessThanOrEqualsFilter
          A filter to compare <=.
 class LikeFilter
          This filter allows the user to specify wildcards (*) by not escaping them in the filter.
 class NotFilter
          A filter for 'not'.
 class OrFilter
          Filter for logical OR.
 class WhitespaceWildcardsFilter
          This filter automatically converts all whitespace to wildcards (*).
 

Methods in org.springframework.ldap.filter with parameters of type Filter
 AndFilter AndFilter.and(Filter query)
          Add a query to the AND expression.
 OrFilter OrFilter.or(Filter query)
          Add a query to the OR expression
 

Constructors in org.springframework.ldap.filter with parameters of type Filter
NotFilter(Filter filter)
          Create a filter that negates the outcome of the given filter.
 



Copyright © 2006-2011 Spring Framework. All Rights Reserved.