org.swiftboot.util.pref.LongConverter 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 long.
*
* @author allen
*/
public abstract class LongConverter implements Converter {
@Override
public Class getSaveAs() {
return Long.class;
}
}