Package org.ldaptive.filter
Interface FilterFunction
-
- All Known Implementing Classes:
AbstractFilterFunction
,DefaultFilterFunction
,RegexFilterFunction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FilterFunction
Marker interface for a filter function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Filter
parse(String filter)
Parses the supplied string representation of a filter.
-
-
-
Method Detail
-
parse
Filter parse(String filter) throws FilterParseException
Parses the supplied string representation of a filter.- Parameters:
filter
- to parse- Returns:
- parsed filter
- Throws:
FilterParseException
- if the supplied filter is invalid
-
-