All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bklab.export.data.IColumnDataSupplier Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
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