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

org.swiftboot.util.pref.StringConverter Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy