org.swiftboot.util.pref.StringConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-utils Show documentation
Show all versions of swiftboot-utils Show documentation
Utils library for enterprise applications
The newest version!
package org.swiftboot.util.pref;
/**
* Converter for object save as string.
*
* @author allen
*/
public abstract class StringConverter implements Converter {
@Override
public Class getSaveAs() {
return String.class;
}
}