Java Money _getStrMoney(Object money)

Here you can find the source of _getStrMoney(Object money)

Description

get Str Money

License

Apache License

Declaration

private static String _getStrMoney(Object money) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String _getStrMoney(Object money) {
        String strMoney = "0";
        if (money != null) {
            strMoney = money.toString();
            if (strMoney.equals(""))
                strMoney = "0";
        }//www.  j  a v a2 s  .  c o m
        return strMoney;
    }
}

Related

  1. doubleToMoney(double value)
  2. fMoney(float pfNum)
  3. GetMoneyAmount(int amount, int CheckAmount)
  4. isMoney(String money)