Java Money isMoney(String[] Moneys, String key)

Here you can find the source of isMoney(String[] Moneys, String key)

Description

is Money

License

Open Source License

Parameter

Parameter Description
Moneys a parameter
key a parameter

Declaration

public static boolean isMoney(String[] Moneys, String key) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**// ww  w .ja  va  2 s. c o m
     * @param Moneys
     * @param key
     * @return
     */
    public static boolean isMoney(String[] Moneys, String key) {
        if (Moneys.length == 0)
            return false;
        for (String moneyKey : Moneys) {
            if (moneyKey.equals(key)) {
                return true;
            }
        }
        return false;
    }
}

Related

  1. fMoney(float pfNum)
  2. GetMoneyAmount(int amount, int CheckAmount)
  3. isMoney(String money)
  4. isMoney(String money)
  5. isMoney(String str)
  6. moneyChange(String money)
  7. moneyFenToYuan(String amount)
  8. moneyMinus(float a, float b)
  9. multiMoney(Integer money)