Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ public Optional<TextNode> cellValue(final SpreadsheetCell cell) {

public abstract Object cellValue(final SpreadsheetCell cell);

/**
* Returns the preferred file extension for this {@link SpreadsheetCell} component. Note this does not include
* the actual type technology file extension such as <code>*.json</code>, which needs to be appended.
*/
public final FileExtension fileExtension() {
return this.fileExtension;
}
Expand Down
Loading