com.abubusoft.kripton.common.CurrencyUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-core Show documentation
Show all versions of kripton-core Show documentation
Kripton Persistence Library - core module
package com.abubusoft.kripton.common;
import java.util.Currency;
public class CurrencyUtils {
public static String write(Currency currency) {
return currency.toString();
}
public static Currency read(String string) {
return Currency.getInstance(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy