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

it.espr.mvc.converter.StringToStringConverter Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package it.espr.mvc.converter;

public class StringToStringConverter extends AStringToCastingConverter {

	@Override
	public Class getType() {
		return String.class;
	}

	@Override
	public String convert(String value) {
		return value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy