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

com.github.stefanbirkner.editors.mapper.Mapper Maven / Gradle / Ivy

The newest version!
package com.github.stefanbirkner.editors.mapper;

/**
 * A {@code Mapper} maps between Strings and objects.
 * 
 * @author Stefan Birkner 
 * @since 2.0.0
 */
public interface Mapper {
	T getValueForText(String text);

	String getTextForValue(T value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy