@Retention(value=RUNTIME) @Target(value=METHOD) @API(status=STABLE) public @interface DataTableType
The signature of the method is used to determine which data table type is registered:
String -> Author
will register a TableCellTransformer
Map<String, String> -> Author
will register a TableEntryTransformer
List<String> -> Author
will register a TableRowTransformer
DataTable -> Author
will register a TableTransformer
Author
is an example of the class you want to convert the table to.DataTableType
Copyright © 2019. All rights reserved.