de.saxsys.mvvmfx.utils.mapping.accessorfunctions.FloatGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mvvmfx Show documentation
Show all versions of mvvmfx Show documentation
This module is the core implementation of the framework
package de.saxsys.mvvmfx.utils.mapping.accessorfunctions;
import java.util.function.Function;
/**
* A functional interface to define a getter method of type {@link Float}.
*
* @param
* the generic type of the model.
*/
@FunctionalInterface
public interface FloatGetter extends Function {
/**
* @param model
* the model instance.
* @return the value of the field.
*/
@Override
Float apply(M model);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy