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

com.indeed.mph.serializers.AbstractSmartFloatSerializer Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.indeed.mph.serializers;

import com.indeed.mph.SmartSerializer;

import java.io.IOException;

/**
 * @author alexs
 */
public abstract class AbstractSmartFloatSerializer extends AbstractSmartSerializer {
    private static final long serialVersionUID = -1167571588287234119L;

    @Override
    public Float parseFromString(final String s) throws IOException {
        return Float.parseFloat(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy