Class UnaryFilter
- java.lang.Object
-
- org.apache.directory.ldap.client.api.search.AbstractFilter
-
- org.apache.directory.ldap.client.api.search.UnaryFilter
-
- All Implemented Interfaces:
Filter
final class UnaryFilter extends AbstractFilter
Creates a NOT filter- Author:
- Apache Directory Project
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringBuilderbuild(StringBuilder builder)Constructs a String representation of a Filterstatic UnaryFilternot()Constructs a NOT filterstatic UnaryFilternot(Filter filter)Constructs a NOT filter with the associated inner Filter-
Methods inherited from class org.apache.directory.ldap.client.api.search.AbstractFilter
build
-
-
-
-
Method Detail
-
not
public static UnaryFilter not()
Constructs a NOT filter- Returns:
- The constructed NOT Filter
-
not
public static UnaryFilter not(Filter filter)
Constructs a NOT filter with the associated inner Filter- Parameters:
filter- The inner Filter- Returns:
- The constructed NOT Filter
-
build
public StringBuilder build(StringBuilder builder)
Constructs a String representation of a Filter- Parameters:
builder- The current buffer containing the on going representation of the filter- Returns:
- The constructed String
-
-