cz.jalasoft.util.converter.string.StringConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JalasoftUtils Show documentation
Show all versions of JalasoftUtils Show documentation
A collection of utility classes that might be useful.
The newest version!
package cz.jalasoft.util.converter.string;
import cz.jalasoft.util.converter.Converter;
/**
* Created by honzales on 18.4.15.
*/
public abstract class StringConverter implements Converter {
@Override
public final Class sourceType() {
return String.class;
}
}