Class GreaterThanFilter
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.filter.AttributeFilter
-
- org.identityconnectors.framework.common.objects.filter.SingleValueAttributeFilter
-
- org.identityconnectors.framework.common.objects.filter.ComparableAttributeFilter
-
- org.identityconnectors.framework.common.objects.filter.GreaterThanFilter
-
- All Implemented Interfaces:
Filter
public final class GreaterThanFilter extends ComparableAttributeFilter
-
-
Constructor Summary
Constructors Constructor Description GreaterThanFilter(Attribute attr)Determine if theConnectorObjectAttributevalue is greater than the one provided in the filter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(ConnectorObject obj)Determine if theConnectorObjectAttributevalue is greater than the one provided in the filter.<R,P>
Raccept(FilterVisitor<R,P> v, P p)Applies aFilterVisitorto thisFilter.StringtoString()-
Methods inherited from class org.identityconnectors.framework.common.objects.filter.ComparableAttributeFilter
compare
-
Methods inherited from class org.identityconnectors.framework.common.objects.filter.SingleValueAttributeFilter
getValue
-
Methods inherited from class org.identityconnectors.framework.common.objects.filter.AttributeFilter
getAttribute, getName, isPresent
-
-
-
-
Constructor Detail
-
GreaterThanFilter
public GreaterThanFilter(Attribute attr)
Determine if theConnectorObjectAttributevalue is greater than the one provided in the filter.
-
-
Method Detail
-
accept
public boolean accept(ConnectorObject obj)
Determine if theConnectorObjectAttributevalue is greater than the one provided in the filter.- 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.- Type Parameters:
R- The return type of the visitor's methods.P- The type of the additional parameters to the visitor's methods.- Parameters:
v- The filter visitor.p- Optional additional visitor parameter.- Returns:
- A result as specified by the visitor.
-
-