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

de.rpgframework.genericrpg.persist.FloatConverter Maven / Gradle / Ivy

The newest version!
package de.rpgframework.genericrpg.persist;

import org.prelle.simplepersist.StringValueConverter;

/**
 * @author prelle
 *
 */
public class FloatConverter implements StringValueConverter {

	@Override
	public String write(Float value) throws Exception {
		return String.valueOf(value);
	}

	@Override
	public Float read(String v) throws Exception {
		return Float.valueOf(v);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy