org.bklab.export.data.IColumnDataSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
package org.bklab.export.data;
import com.vaadin.flow.function.SerializableFunction;
public interface IColumnDataSupplier extends SerializableFunction {
String get(T entity);
@Override
default String apply(T entity) {
return get(entity);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy