blob: aa5585f050f9575aaf668bf2ee53f9cde2283145 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
// ? 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (c) 2004-2010, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Author: Alan Liu
* Created: April 12, 2004
* Since: ICU 3.0
**********************************************************************
*/
package android.icu.util;
/**
* An amount of currency, consisting of a Number and a Currency.
* CurrencyAmount objects are immutable.
*
* @see java.lang.Number
* @see android.icu.util.Currency
* @author Alan Liu
*/
@SuppressWarnings({"unchecked", "deprecation", "all"})
public class CurrencyAmount extends android.icu.util.Measure {
/**
* Constructs a new object given a number and a currency.
* @param number the number
* @param currency the currency
*/
public CurrencyAmount(java.lang.Number number, android.icu.util.Currency currency) { super(null, null); throw new RuntimeException("Stub!"); }
/**
* Constructs a new object given a double value and a currency.
* @param number a double value
* @param currency the currency
*/
public CurrencyAmount(double number, android.icu.util.Currency currency) { super(null, null); throw new RuntimeException("Stub!"); }
/**
* Constructs a new object given a number and a Java currency.
* @param number the number
* @param currency the currency
*/
public CurrencyAmount(java.lang.Number number, java.util.Currency currency) { super(null, null); throw new RuntimeException("Stub!"); }
/**
* Constructs a new object given a double value and a Java currency.
* @param number a double value
* @param currency the currency
*/
public CurrencyAmount(double number, java.util.Currency currency) { super(null, null); throw new RuntimeException("Stub!"); }
/**
* Returns the currency of this object.
* @return this object's Currency
*/
public android.icu.util.Currency getCurrency() { throw new RuntimeException("Stub!"); }
}