com.github.simy4.xpath.util.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpath-to-xml-core Show documentation
Show all versions of xpath-to-xml-core Show documentation
Convenient utility to build XML models by evaluating XPath expressions
package com.github.simy4.xpath.util;
/**
* java.util.function.Function exact copy.
*
* @param function parameter type
* @param function return type
* @author Alex Simkin
* @since 1.0
*/
public interface Function {
R apply(T t);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy