Package net.sf.saxon.expr
Class ItemMapper
java.lang.Object
net.sf.saxon.expr.ItemMapper
- All Implemented Interfaces:
ItemMappingFunction
ItemMapper is an implementation of
ItemMappingFunction that wraps
a function typically supplied as a lambda expression.
NOTE: Java allows a lambda expression to be used wherever an ItemMappingFunction
is needed, but C# does not (it's not possible in C# to have a class implementing
a delegate). So if a lambda expression is wanted, use an ItemMapper
as a wrapper.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionMap one item to another item.static ItemMapperof(ItemMapper.Lambda lambda)
-
Method Details
-
of
-
mapItem
Map one item to another item.- Specified by:
mapItemin interfaceItemMappingFunction- Parameters:
item- The input item to be mapped.- Returns:
- either the output item, or null.
- Throws:
XPathException- if a dynamic error occurs
-