Compare commits

..

1 commit

Author SHA1 Message Date
b3820c1d8e
feat(table): add quarkus-table-generator
Some checks failed
Build / build (pull_request) Failing after 23s
2025-08-05 21:55:38 +02:00

View file

@ -13,7 +13,7 @@ public interface TableGenerator {
* If null, field names are used as headers.
* @return String representing the records as a table in Jira notation
* @throws IllegalArgumentException If records are null or empty, if the type is not a Record.
* Also throws if custom headers are provided but the size does not match the record's field count
* Also throws if customer headers are provided but the size does not match the record's field count
* @throws IllegalStateException if an error occurs while invoking a record's accessor
*/
String generateJiraTable(List<?> records, List<String> headers);