com.google.gdata.data.extensions
Class Money

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.extensions.Money
All Implemented Interfaces:
Extension

public class Money
extends ExtensionPoint

Describes money.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Money()
          Default mutable constructor.
Money(java.lang.Double amount, java.lang.String currencyCode)
          Immutable constructor.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.Double getAmount()
          Returns the amount.
 java.lang.String getCurrencyCode()
          Returns the ISO4217 currency code.
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 boolean hasAmount()
          Returns whether it has the amount.
 boolean hasCurrencyCode()
          Returns whether it has the ISO4217 currency code.
 int hashCode()
           
 void setAmount(java.lang.Double amount)
          Sets the amount.
 void setCurrencyCode(java.lang.String currencyCode)
          Sets the ISO4217 currency code.
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addRepeatingExtension, declareExtensions, generateCumulativeXmlBlob, getExtension, getExtensions, getHandler, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Money

public Money()
Default mutable constructor.


Money

public Money(java.lang.Double amount,
             java.lang.String currencyCode)
Immutable constructor.

Parameters:
amount - amount.
currencyCode - ISO4217 currency code.
Method Detail

getAmount

public java.lang.Double getAmount()
Returns the amount.

Returns:
amount

setAmount

public void setAmount(java.lang.Double amount)
Sets the amount.

Parameters:
amount - amount or null to reset

hasAmount

public boolean hasAmount()
Returns whether it has the amount.

Returns:
whether it has the amount

getCurrencyCode

public java.lang.String getCurrencyCode()
Returns the ISO4217 currency code.

Returns:
ISO4217 currency code

setCurrencyCode

public void setCurrencyCode(java.lang.String currencyCode)
Sets the ISO4217 currency code.

Parameters:
currencyCode - ISO4217 currency code or null to reset

hasCurrencyCode

public boolean hasCurrencyCode()
Returns whether it has the ISO4217 currency code.

Returns:
whether it has the ISO4217 currency code

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object