Package netscape.ldap.client
Class JDAPFilterSet
- java.lang.Object
-
- netscape.ldap.client.JDAPFilter
-
- netscape.ldap.client.JDAPFilterSet
-
- Direct Known Subclasses:
JDAPFilterAnd
,JDAPFilterOr
public abstract class JDAPFilterSet extends JDAPFilter
This class implements the base class of filter "and" and filter "or".- Version:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description JDAPFilterSet(int tag)
Constructs the filter set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addElement(JDAPFilter filter)
Adds filter into the filter set.BERElement
getBERElement()
Gets the ber representation of the filter.java.util.Collection<JDAPFilter>
getFilters()
Gets the filter set.java.lang.String
getParamString()
Gets the filter set parameters.-
Methods inherited from class netscape.ldap.client.JDAPFilter
getFilter, getFilterComp, getFilterItem, getFilterList, toString
-
-
-
-
Method Detail
-
getFilters
public java.util.Collection<JDAPFilter> getFilters()
Gets the filter set.- Returns:
- filter set
-
addElement
public void addElement(JDAPFilter filter)
Adds filter into the filter set.- Parameters:
filter
- adding filter
-
getBERElement
public BERElement getBERElement()
Gets the ber representation of the filter.- Specified by:
getBERElement
in classJDAPFilter
- Returns:
- ber representation
-
getParamString
public java.lang.String getParamString()
Gets the filter set parameters.- Returns:
- set parameters
-
-