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

com.github.megatronking.svg.generator.utils.FloatUtils Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
package com.github.megatronking.svg.generator.utils;

public class FloatUtils {

    public static String format2String(float value) {
        // To avoid trailing zeros like 17.0, use this trick
        if (value == (long) value) {
            return String.valueOf((long) value);
        } else {
            return String.valueOf(value);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy