Package io.cucumber.datatable
Interface TableCellTransformer<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 TableCellTransformer<T>
Transforms a single table cell to an instance ofT
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
transform(String cell)
Transforms a single table cell to an instance ofT
.
-