Interface AttributeNameFormatter<ATTRIBUTE extends ExcelAttribute>
-
- Type Parameters:
ATTRIBUTE-ExcelAttributesubtype
- All Known Implementing Classes:
ClassificationAttributeNameFormatter,DisplayNameAttributeNameFormatter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface AttributeNameFormatter<ATTRIBUTE extends ExcelAttribute>Allows to format givenExcelAttributeto readable value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringformat(ExcelAttributeContext<ATTRIBUTE> excelAttributeContext)Formats given input to readable value
-
-
-
Method Detail
-
format
java.lang.String format(@Nonnull ExcelAttributeContext<ATTRIBUTE> excelAttributeContext)Formats given input to readable value- Parameters:
excelAttributeContext- a context which contains excel attribute- Returns:
- readable value
-
-