![JAR search and dependency download from the Maven repository](/logo.png)
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