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

io.sphere.sdk.models.DefaultCurrencyUnits Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.models;

import javax.money.CurrencyUnit;
import javax.money.Monetary;

public final class DefaultCurrencyUnits {
    private DefaultCurrencyUnits() {
    }

    public static final CurrencyUnit EUR = ofCode("EUR");
    public static final CurrencyUnit USD = ofCode("USD");

    private static CurrencyUnit ofCode(final String currencyCode) {
        return Monetary.getCurrency(currencyCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy