Package io.cucumber.datatable
Interface TableEntryTransformer<T>
-
- Type Parameters:
T- the target type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@API(status=STABLE) @FunctionalInterface public interface TableEntryTransformer<T>
Transforms a table entry to in instance ofTA table entry consists of the cells of a row paired with the header cells.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ttransform(Map<String,String> entry)Transforms a table entry to in instance ofT.
-