@Retention(value=RUNTIME) @Target(value=METHOD) @API(status=STABLE) public @interface DefaultDataTableEntryTransformer
Valid method signatures are:
Map<String,String>, Type -> Object
Object, Type -> Object
Map<String,String>, Type, TableCellByTypeTransformer -> Object
Object, Type, TableCellByTypeTransformer -> Object
TableEntryByTypeTransformer
,
DataTableType
Modifier and Type | Optional Element and Description |
---|---|
boolean |
headersToProperties
Converts a data tables header headers to property names.
|
String[] |
replaceWithEmptyString
Replace these strings in the Datatable with empty strings.
|
public abstract boolean headersToProperties
E.g. Xml Http request
becomes xmlHttpRequest
.
public abstract String[] replaceWithEmptyString
A data table can only represent absent and non-empty strings. By replacing a known value (for example [empty]) a data table can also represent empty strings.
It is not recommended to use multiple replacements in the same table.
Copyright © 2020. All rights reserved.