-
- 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 Content
A Callback providing (mostly new) content for each element- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
content(Context context)
The callback method invoked for every matched element.
-
-
-
Method Detail
-
content
java.lang.String content(Context context)
The callback method invoked for every matched element.- Parameters:
context
- The context for the current callback call.- Returns:
- The new content
-
-