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

de.saxsys.mvvmfx.utils.mapping.accessorfunctions.FloatGetter Maven / Gradle / Ivy

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