com.remedy.arsys.api
Class CurrencyDetail

java.lang.Object
  |
  +--com.remedy.arsys.api.CurrencyDetail
All Implemented Interfaces:
java.lang.Cloneable

public class CurrencyDetail
extends java.lang.Object
implements java.lang.Cloneable

The CurrencyDetail class represents Currency Code information, that is, codes of different country's currencies.


Constructor Summary
CurrencyDetail()
           
CurrencyDetail(java.lang.String str, int precision)
           
 
Method Summary
 java.lang.Object clone()
          Makes a copy of the object.
 boolean equals(java.lang.Object anObject)
          Use this method for checking equality of currency type.
 java.lang.String getCurrencyCode()
          Returns currency type
 int getPrecision()
          Returns precision
 void setCurrencyCode(java.lang.String currencyCodeType)
          Sets currency type to currencyCodeType.
 void setPrecision(int precision)
          Sets precision
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CurrencyDetail

public CurrencyDetail()

CurrencyDetail

public CurrencyDetail(java.lang.String str,
                      int precision)
Method Detail

setCurrencyCode

public void setCurrencyCode(java.lang.String currencyCodeType)
Sets currency type to currencyCodeType.

setPrecision

public void setPrecision(int precision)
Sets precision

getCurrencyCode

public java.lang.String getCurrencyCode()
Returns currency type

getPrecision

public int getPrecision()
Returns precision

equals

public boolean equals(java.lang.Object anObject)
Use this method for checking equality of currency type.
Overrides:
equals in class java.lang.Object

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Makes a copy of the object.
Overrides:
clone in class java.lang.Object