Package com.saxonica.ee.stream.feed
Class FilteringFeed.FilterLambda
java.lang.Object
com.saxonica.ee.stream.feed.FilteringFeed.FilterLambda
- All Implemented Interfaces:
FilteringFeed.Filter
- Enclosing class:
FilteringFeed
An implementation of Filter that accepts lambda expressions (C# delegates)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionTest whether a given item, at a given position in the sequence, matches the filter
-
Constructor Details
-
FilterLambda
-
-
Method Details
-
matches
Description copied from interface:FilteringFeed.Filter
Test whether a given item, at a given position in the sequence, matches the filter- Specified by:
matches
in interfaceFilteringFeed.Filter
- Parameters:
item
- the item to be matchedposition
- the 1-based position of the item in the sequence- Returns:
- MATCHES if the item is to be included in the result, SKIP if it is to be excluded; DONE if this and all future items are to be excluded
- Throws:
XPathException
- if a dynamic error occurs
-