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

com.abubusoft.kripton.common.CurrencyUtils Maven / Gradle / Ivy

There is a newer version: 8.2.0-rc.4
Show newest version
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