Interface ColumnHeaderResolvingStrategy

All Known Implementing Classes:
ManualColumnHeaderResolvingStrategy, VaadinColumnHeaderResolvingStrategy

public interface ColumnHeaderResolvingStrategy
Can be implemented to create a new strategy that resolves a Grid.Column header
  • Method Summary

    Modifier and Type
    Method
    Description
    resolve(com.vaadin.flow.component.grid.Grid.Column<?> column)
    Resolves the text for a column header
  • Method Details

    • resolve

      Optional<String> resolve(com.vaadin.flow.component.grid.Grid.Column<?> column)
      Resolves the text for a column header
      Parameters:
      column - The column for which the header text should be resolved
      Returns:
      Optional.empty() when the text could not be resolved and the next function should be used.
      If a value was found the Optional contains the string.