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

com.testdroid.api.formatter.CurrencyFormatter Maven / Gradle / Ivy

There is a newer version: 3.34.0
Show newest version
package com.testdroid.api.formatter;

import java.math.BigDecimal;
import java.text.NumberFormat;
import java.util.Locale;

/**
 * @author Damian Sniezek 
 */
public class CurrencyFormatter {

    private CurrencyFormatter() {
        throw new IllegalStateException("Utility class");
    }

    public static String format(Long value) {
        return NumberFormat.getCurrencyInstance(Locale.US).format(BigDecimal.valueOf(value, 2));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy