@FunctionalInterface
public interface ItemMappingFunction
NOTE: Java allows a lambda expression to be used where an ItemMappingFunction
is needed, but C# does not (it's not possible in C# to have a class implementing
a delegate). So if a delegate is wanted, use ItemMapper, to ensure that
it works in both languages.
| Modifier and Type | Method and Description |
|---|---|
Item |
mapItem(Item item)
Map one item to another item.
|
Item mapItem(Item item) throws XPathException
item - The input item to be mapped.XPathException - if a dynamic error occursCopyright (c) 2004-2022 Saxonica Limited. All rights reserved.