com.bea.commerce.ebusiness.price.quote
Class AbstractMoney
java.lang.Object
|
+--com.bea.commerce.ebusiness.price.quote.AbstractMoney
- All Implemented Interfaces:
- Money, java.io.Serializable
- Direct Known Subclasses:
- ImmutableMoney, MutableMoney
- public abstract class AbstractMoney
- extends java.lang.Object
- implements Money
- See Also:
- Serialized Form
Method Summary |
static int |
compare(Money moneyA,
Money moneyB)
Compares to money objects. |
boolean |
equals(java.lang.Object object)
Compares the specified object with this object. |
abstract java.lang.String |
getCurrency()
|
abstract double |
getValue()
|
java.lang.String |
toString()
Returns a string containing the value and currency of
the object. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ZERO
public static final double ZERO
NO_CURRENCY
public static final java.lang.String NO_CURRENCY
AbstractMoney
public AbstractMoney()
compare
public static int compare(Money moneyA,
Money moneyB)
throws CurrencyMismatchException
- Compares to money objects.
- Parameters:
moneyA
- a Money objectmoneyB
- a Money object- Returns:
- -1, 0, or 1 corresponding to the contract for
the Comparator interface.
- Throws:
CurrencyMismatchException
- if the currencies
of the two Money objects differ.- See Also:
Money
,
CurrencyMismatchException
getValue
public abstract double getValue()
- Specified by:
getValue
in interface Money
- Returns:
- the amount of money
getCurrency
public abstract java.lang.String getCurrency()
- Specified by:
getCurrency
in interface Money
- Returns:
- the currency string.
equals
public boolean equals(java.lang.Object object)
- Compares the specified object with this object.
This method will return true if the specified
object implements the Money interface and
has the same currency and amount as this object.
- Overrides:
equals
in class java.lang.Object
- Parameters:
object
- - Returns:
- true if the specified object implements
the Money interface and has the same currency as
this object.
- See Also:
Money
toString
public java.lang.String toString()
- Returns a string containing the value and currency of
the object.
- Overrides:
toString
in class java.lang.Object
- Returns:
- the value and currency of the object as a String
Copyright © 2001 BEA Systems, Inc. All Rights Reserved