Class NotFilter
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.filter.NotFilter
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(ConnectorObject obj)Return the opposite the internal filters return value.<R,P>
Raccept(FilterVisitor<R,P> v, P p)Applies aFilterVisitorto thisFilter.FiltergetFilter()Get the internal filter that is being negated.StringtoString()
-
-
-
Constructor Detail
-
NotFilter
public NotFilter(Filter filter)
Take the value returned from the internal filter and NOT it.
-
-
Method Detail
-
getFilter
public Filter getFilter()
Get the internal filter that is being negated.
-
accept
public boolean accept(ConnectorObject obj)
Return the opposite the internal filters return value.- Specified by:
acceptin interfaceFilter- Parameters:
obj- - The specified ConnectorObject.- Returns:
trueif the object matches (that is, satisfies all selection criteria of) this filter; otherwisefalse.- See Also:
Filter.accept(ConnectorObject)
-
accept
public <R,P> R accept(FilterVisitor<R,P> v, P p)
Description copied from interface:FilterApplies aFilterVisitorto thisFilter.
-
-