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

fi.jubic.easyconfig.internal.parameter.FloatParameterParser Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
package fi.jubic.easyconfig.internal.parameter;

import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;

class FloatParameterParser extends PrimitiveParameterParser {
    private static final Set> SUPPORTED_CLASSES = Stream
            .of(float.class, Float.class)
            .collect(Collectors.toSet());

    @Override
    Set> supportedClasses() {
        return SUPPORTED_CLASSES;
    }

    @Override
    Optional parse(String stringValue) {
        try {
            return Optional.of(Float.valueOf(stringValue));
        }
        catch (NumberFormatException ignore) {
            return Optional.empty();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy